Class JavaScriptCallbackExecutedEventArgs
Provides data for the JavaScriptCallbackExecuted event.
public class JavaScriptCallbackExecutedEventArgs : EventArgs
- Inheritance
-
JavaScriptCallbackExecutedEventArgs
- Inherited Members
Constructors
JavaScriptCallbackExecutedEventArgs(string, string)
Initializes a new instance of the JavaScriptCallbackExecutedEventArgs type.
public JavaScriptCallbackExecutedEventArgs(string scriptPayload, string bindingName)
Parameters
scriptPayload
stringThe payload sent from the JavaScript callback.
bindingName
stringThe binding name of the JavaScript callback that was execute.
Properties
BindingName
Gets or sets the binding name of the JavaScript callback that was execute.
public string BindingName { get; set; }
Property Value
ScriptPayload
Gets or sets the payload sent from the JavaScript callback.
public string ScriptPayload { get; set; }