ExternalApplication.DoAction Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
DoAction(RequestActionEventArgs) |
Performs an action where the action is given by the RequestActionEventArgs. |
DoAction(Int32, String) |
Performs an action where the action is specified by its ID. |
DoAction(String, String) |
Obsolete.
Performs an action where the action is given by its unique name. |
DoAction(RequestActionEventArgs)
Performs an action where the action is given by the RequestActionEventArgs.
protected:
override void DoAction(Microsoft::Uii::Csr::RequestActionEventArgs ^ args);
protected override void DoAction (Microsoft.Uii.Csr.RequestActionEventArgs args);
override this.DoAction : Microsoft.Uii.Csr.RequestActionEventArgs -> unit
Protected Overrides Sub DoAction (args As RequestActionEventArgs)
Parameters
RequestActionEventArgs sent into the actiobm the argument holds the action object.
Applies to
DoAction(Int32, String)
Performs an action where the action is specified by its ID.
public:
override void DoAction(int actionID, System::String ^ data);
public override void DoAction (int actionID, string data);
override this.DoAction : int * string -> unit
Public Overrides Sub DoAction (actionID As Integer, data As String)
Parameters
- actionID
- Int32
Action Id
- data
- String
Action Data
Applies to
DoAction(String, String)
Caution
This method has been deprecated, use DoAction(RequestActionEventArgs args) instead!
Performs an action where the action is given by its unique name.
public:
override void DoAction(System::String ^ actionName, System::String ^ data);
[System.Obsolete("This method has been deprecated, use DoAction(RequestActionEventArgs args) instead!")]
public override void DoAction (string actionName, string data);
[<System.Obsolete("This method has been deprecated, use DoAction(RequestActionEventArgs args) instead!")>]
override this.DoAction : string * string -> unit
Public Overrides Sub DoAction (actionName As String, data As String)
Parameters
- actionName
- String
Name of the action as defined in Admin Console for the application that calls this external one.
- data
- String
XML content of Admin Console "Build Action Initialization String" panel that describes the action.
- Attributes