IHostedApplication.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(Int32, String) |
Invokes an action on the application |
DoAction(String, String) |
Obsolete.
Invokes an action on the application |
DoAction(Int32, String)
Invokes an action on the application
public:
void DoAction(int actionID, System::String ^ data);
public void DoAction (int actionID, string data);
abstract member DoAction : int * string -> unit
Public Sub DoAction (actionID As Integer, data As String)
Parameters
- actionID
- Int32
Specifies the ID of the action to perform.
- data
- String
Specifies the data to send into the action.
Applies to
DoAction(String, String)
Caution
This method has been deprecated, use DoAction(RequestActionEventArgs args) instead!
Invokes an action on the application
public:
void DoAction(System::String ^ action, System::String ^ data);
[System.Obsolete("This method has been deprecated, use DoAction(RequestActionEventArgs args) instead!")]
public void DoAction (string action, string data);
[<System.Obsolete("This method has been deprecated, use DoAction(RequestActionEventArgs args) instead!")>]
abstract member DoAction : string * string -> unit
Public Sub DoAction (action As String, data As String)
Parameters
- action
- String
Specifies the name of the action to perform.
- data
- String
Specifies the data to send into the action.
- Attributes