Hybrid Bridge
|
The event arguments used by the PushJavascriptEvent delegate for codes expecting no result at all More...
Public Member Functions | |
FireJavascriptEventArgs (string script) | |
Creates a new instance of this class with the specific Javascript code More... | |
FireJavascriptEventArgs (string script, BridgeController target) | |
Creates a new instance of this class with the specific Javascript code and one BridgeController to target More... | |
Public Member Functions inherited from HybridBridge.PushJavascriptEventArgs | |
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... | |
Additional Inherited Members | |
Properties inherited from HybridBridge.PushJavascriptEventArgs | |
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 for codes expecting no result at all
Definition at line 7 of file FireJavascriptEventArgs.cs.
HybridBridge.FireJavascriptEventArgs.FireJavascriptEventArgs | ( | string | script | ) |
Creates a new instance of this class with the specific Javascript code
script | The Javascript code to be pushed |
Definition at line 13 of file FireJavascriptEventArgs.cs.
HybridBridge.FireJavascriptEventArgs.FireJavascriptEventArgs | ( | 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 FireJavascriptEventArgs.cs.