Class SmartCallbackArgs

Definition

Namespace:
Tizen.WebView
Assembly:
Tizen.WebView.dll

The argument from the SmartCallback.

C#
Copy
public class SmartCallbackArgs : EventArgs
Inheritance
object
System.EventArgs
SmartCallbackArgs

Methods

View Source

GetAsBoolean()

Gets the argument as a boolean type.

Declaration
C#
Copy
public bool GetAsBoolean()
Returns
Type Description
bool

Argument as a boolean type.

View Source

GetAsDouble()

Gets the argument as a double type.

Declaration
C#
Copy
public double GetAsDouble()
Returns
Type Description
double

Argument as a double type.

View Source

GetAsInteger()

Gets the argument as an integer type.

Declaration
C#
Copy
public int GetAsInteger()
Returns
Type Description
int

Argument as an integer type.

View Source

GetAsString()

Gets the argument as a string type.

Declaration
C#
Copy
public string GetAsString()
Returns
Type Description
string

Argument as a string type.