View.OnLoadCustomData Method (AsyncStatus, Byte[])
Allows the snap-in to receive previously stored binary data that is contained in the console file.
Namespace: Microsoft.ManagementConsole
Assembly: Microsoft.ManagementConsole (in Microsoft.ManagementConsole.dll)
Syntax
protected virtual void OnLoadCustomData(
AsyncStatus status,
byte[] customData
)
protected:
virtual void OnLoadCustomData(
AsyncStatus^ status,
array<unsigned char>^ customData
)
abstract OnLoadCustomData :
status:AsyncStatus *
customData:byte[] -> unit
override OnLoadCustomData :
status:AsyncStatus *
customData:byte[] -> unit
Protected Overridable Sub OnLoadCustomData (
status As AsyncStatus,
customData As Byte()
)
Parameters
status
Type: Microsoft.ManagementConsole.AsyncStatusThe object that holds the status information.
customData
Type: System.Byte[]Custom data to load.
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