View.OnSharedDataChangeRequested Method (Object, WritableSharedDataItem, Byte[], AsyncStatus)
Handles a request from an extension for change in the value of a published data item.
Namespace: Microsoft.ManagementConsole
Assembly: Microsoft.ManagementConsole (in Microsoft.ManagementConsole.dll)
Syntax
protected virtual void OnSharedDataChangeRequested(
object selectionValue,
WritableSharedDataItem item,
byte[] newValue,
AsyncStatus status
)
protected:
virtual void OnSharedDataChangeRequested(
Object^ selectionValue,
WritableSharedDataItem^ item,
array<unsigned char>^ newValue,
AsyncStatus^ status
)
abstract OnSharedDataChangeRequested :
selectionValue:Object *
item:WritableSharedDataItem *
newValue:byte[] *
status:AsyncStatus -> unit
override OnSharedDataChangeRequested :
selectionValue:Object *
item:WritableSharedDataItem *
newValue:byte[] *
status:AsyncStatus -> unit
Protected Overridable Sub OnSharedDataChangeRequested (
selectionValue As Object,
item As WritableSharedDataItem,
newValue As Byte(),
status As AsyncStatus
)
Parameters
selectionValue
Type: System.ObjectSelection object identifying the items in the view for which this call is made.
item
Type: Microsoft.ManagementConsole.WritableSharedDataItemThe item whose value is requested to be changed.
newValue
Type: System.Byte[]The new value as requested by an extension.
status
Type: Microsoft.ManagementConsole.AsyncStatusThe object that holds the status information.
Remarks
Modal dialogs should not be shown during any request that takes an AsyncStatus object as a parameter.
See Also
View Class
Microsoft.ManagementConsole Namespace
Return to top