RequestActionEventArgs Constructors
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
RequestActionEventArgs(String, String, Object) |
Create a request to run an action. |
RequestActionEventArgs(ApplicationHostWorkItem, String, String, Object) |
Create a request to run an action. |
RequestActionEventArgs(String, String, String, Object) |
Create a request to run an action. |
RequestActionEventArgs(String, String, Object)
Create a request to run an action.
public:
RequestActionEventArgs(System::String ^ target, System::String ^ action, System::Object ^ data);
public RequestActionEventArgs (string target, string action, object data);
new Microsoft.Uii.Csr.RequestActionEventArgs : string * string * obj -> Microsoft.Uii.Csr.RequestActionEventArgs
Public Sub New (target As String, action As String, data As Object)
Parameters
- target
- String
The application to run the action on or * for all applications
- action
- String
The name of the action
- data
- Object
Some data to pass along to the action
Applies to
RequestActionEventArgs(ApplicationHostWorkItem, String, String, Object)
Create a request to run an action.
public:
RequestActionEventArgs(Microsoft::Uii::Csr::ApplicationHostWorkItem ^ appHostWorkItem, System::String ^ target, System::String ^ action, System::Object ^ data);
public RequestActionEventArgs (Microsoft.Uii.Csr.ApplicationHostWorkItem appHostWorkItem, string target, string action, object data);
new Microsoft.Uii.Csr.RequestActionEventArgs : Microsoft.Uii.Csr.ApplicationHostWorkItem * string * string * obj -> Microsoft.Uii.Csr.RequestActionEventArgs
Public Sub New (appHostWorkItem As ApplicationHostWorkItem, target As String, action As String, data As Object)
Parameters
- appHostWorkItem
- ApplicationHostWorkItem
The CAB workitem containing the target application (IsGlobalWorkItem=true indicates use active session)
- target
- String
The application to run the action on or * for all applications
- action
- String
The name of the action
- data
- Object
Some data to pass along to the action
Applies to
RequestActionEventArgs(String, String, String, Object)
Create a request to run an action.
public:
RequestActionEventArgs(System::String ^ sessionId, System::String ^ target, System::String ^ action, System::Object ^ data);
public RequestActionEventArgs (string sessionId, string target, string action, object data);
new Microsoft.Uii.Csr.RequestActionEventArgs : string * string * string * obj -> Microsoft.Uii.Csr.RequestActionEventArgs
Public Sub New (sessionId As String, target As String, action As String, data As Object)
Parameters
- sessionId
- String
The session id containing the target application (null/empty indicates use active session)
- target
- String
The application to run the action on or * for all applications
- action
- String
The name of the action
- data
- Object
Some data to pass along to the action