AdapterRequestAction Delegate
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.
Caution
This delegate has been deprecated, use AdapterFireRequestAction instead!
Represents a request to fire an action. Not used by all adapters.
public delegate void AdapterRequestAction(System::String ^ applicationName, System::String ^ actionName, System::String ^ data);
[System.Obsolete("This delegate has been deprecated, use AdapterFireRequestAction instead!")]
public delegate void AdapterRequestAction(string applicationName, string actionName, string data);
[<System.Obsolete("This delegate has been deprecated, use AdapterFireRequestAction instead!")>]
type AdapterRequestAction = delegate of string * string * string -> unit
Public Delegate Sub AdapterRequestAction(applicationName As String, actionName As String, data As String)
Parameters
- applicationName
- String
Specifies the application name.
- actionName
- String
Specifies the action name.
- data
- String
Specifies the data.
- Attributes