C# Class WPCordovaClassLib.Cordova.ScriptCallback

Represents client script function to execute
Inheritance: System.EventArgs
Mostrar archivo Open project: ChristianWeyer/tUdUs Class Usage Examples

Public Methods

Method Description
ScriptCallback ( string function, string args ) : System

Creates new instance of a ScriptCallback class.

ScriptCallback ( string function, string id, object msg, object value ) : System

Creates new instance of a ScriptCallback class.

Method Details

ScriptCallback() public method

Creates new instance of a ScriptCallback class.
public ScriptCallback ( string function, string args ) : System
function string The scripting function to execute
args string A variable number of strings to pass to the function as parameters
return System

ScriptCallback() public method

Creates new instance of a ScriptCallback class.
public ScriptCallback ( string function, string id, object msg, object value ) : System
function string The scripting function to execute
id string The id argument
msg object The message argument
value object The value argument
return System