Handles a notification that an action has been triggered for the node that supports the form view. Used to build a collection of property pages for display in a property sheet. Namespace: Microsoft.ConfigurationManagement.AdminConsole
Assembly: Microsoft.ConfigurationManagement (in microsoft.configurationmanagement.dll)

Usage

Visual Basic
Dim action As Action
Dim status As AsyncStatus

Me.OnAction(action, status)

Syntax

Visual Basic
Protected Overrides Sub OnAction ( _
		action As Action, _
		status As AsyncStatus _
)
C#
protected override void OnAction (
		Action action,
		AsyncStatus status
)
C++
protected:
virtual void OnAction (
		Action^ action, 
		AsyncStatus^ status
) override
J#
protected void OnAction (
		Action action, 
		AsyncStatus status
)
JScript
protected override function OnAction (
		action : Action, 
		status : AsyncStatus
)

Parameters

action
status

[in] Microsoft.ManagementConsole.AsyncStatus object.

Remarks

Your application must override this method in a derived class.


Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Server 2003, Windows Vista

Target Platforms

Windows Server 2003,Windows Vista

See Also