Hybrid Bridge
|
The event arguments used by the PushJavascriptEvent delegate More...
Public Member Functions | |
PushJavascriptEventArgs (string script) | |
Creates a new instance of this class with the specific Javascript code More... | |
PushJavascriptEventArgs (string script, BridgeController target) | |
Creates a new instance of this class with the specific Javascript code and one BridgeController to target More... | |
PushJavascriptEventArgs (string script, Action< object > callback) | |
Creates a new instance of this class with the specific Javascript code and a callback function for result More... | |
PushJavascriptEventArgs (string script, BridgeController target, Action< object > callback) | |
Creates a new instance of this class with the specific Javascript code, one BridgeController to target and a callback function for result More... | |
Properties | |
bool | FireAway [get, set] |
Indicates if operations needs a result More... | |
BridgeController | Target [get] |
Contains the target BridgeController instance or to match all listening BridgeController instances More... | |
string | Script [get] |
The Javascript code to execute More... | |
Action< object > | Callback [get] |
The callback function to be used for the result of the operation More... | |
The event arguments used by the PushJavascriptEvent delegate
Definition at line 8 of file PushJavascriptEventArgs.cs.
HybridBridge.PushJavascriptEventArgs.PushJavascriptEventArgs | ( | string | script | ) |
Creates a new instance of this class with the specific Javascript code
script | The Javascript code to be pushed |
Definition at line 14 of file PushJavascriptEventArgs.cs.
HybridBridge.PushJavascriptEventArgs.PushJavascriptEventArgs | ( | string | script, |
BridgeController | target | ||
) |
Creates a new instance of this class with the specific Javascript code and one BridgeController to target
script | The Javascript code to be pushed |
target | The BridgeController class to target |
Definition at line 24 of file PushJavascriptEventArgs.cs.
HybridBridge.PushJavascriptEventArgs.PushJavascriptEventArgs | ( | string | script, |
Action< object > | callback | ||
) |
Creates a new instance of this class with the specific Javascript code and a callback function for result
script | The Javascript code to be pushed |
callback | The callback function to be used for the result of the operation |
Definition at line 33 of file PushJavascriptEventArgs.cs.
HybridBridge.PushJavascriptEventArgs.PushJavascriptEventArgs | ( | string | script, |
BridgeController | target, | ||
Action< object > | callback | ||
) |
Creates a new instance of this class with the specific Javascript code, one BridgeController to target and a callback function for result
script | The Javascript code to be pushed |
target | The BridgeController class to target |
callback | The callback function to be used for the result of the operation |
Definition at line 44 of file PushJavascriptEventArgs.cs.
|
get |
The callback function to be used for the result of the operation
Definition at line 70 of file PushJavascriptEventArgs.cs.
|
getset |
Indicates if operations needs a result
Definition at line 54 of file PushJavascriptEventArgs.cs.
|
get |
The Javascript code to execute
Definition at line 65 of file PushJavascriptEventArgs.cs.
|
get |
Contains the target BridgeController instance or to match all listening BridgeController instances
Definition at line 60 of file PushJavascriptEventArgs.cs.