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.Object

    Selection object identifying the items in the view for which this call is made.

  • newValue
    Type: System.Byte[]

    The new value as requested by an extension.

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