ScopeNode.OnSharedDataChangeRequested Method (WritableSharedDataItem, Byte[], AsyncStatus)
Updates data for a scope node’s shared data item when a change is requested.
Namespace: Microsoft.ManagementConsole
Assembly: Microsoft.ManagementConsole (in Microsoft.ManagementConsole.dll)
Syntax
protected virtual void OnSharedDataChangeRequested(
WritableSharedDataItem item,
byte[] newValue,
AsyncStatus status
)
protected:
virtual void OnSharedDataChangeRequested(
WritableSharedDataItem^ item,
array<unsigned char>^ newValue,
AsyncStatus^ status
)
abstract OnSharedDataChangeRequested :
item:WritableSharedDataItem *
newValue:byte[] *
status:AsyncStatus -> unit
override OnSharedDataChangeRequested :
item:WritableSharedDataItem *
newValue:byte[] *
status:AsyncStatus -> unit
Protected Overridable Sub OnSharedDataChangeRequested (
item As WritableSharedDataItem,
newValue As Byte(),
status As AsyncStatus
)
Parameters
item
Type: Microsoft.ManagementConsole.WritableSharedDataItemThe shared data item to be updated.
newValue
Type: System.Byte[]The new data for the shared data item.
status
Type: Microsoft.ManagementConsole.AsyncStatusThe status information for asynchronous operations on the node.
See Also
ScopeNode Class
Microsoft.ManagementConsole Namespace
Return to top