C# Class V8.Net.V8Function

Represents a basic JavaScript function object. By default, this object is used for the global environment.
Inheritance: V8NativeObject, IV8Function
Afficher le fichier Open project: rjamesnw/v8dotnet

Méthodes publiques

Méthode Description
Call ( InternalHandle _this ) : InternalHandle

Calls the native side to invoke the function associated with this managed function wrapper. The '_this' property is the "this" object within the function when called.

Note: This method simply calls 'Handle.Call()' without a function name.

Call ( string functionName, InternalHandle _this ) : InternalHandle

If the function object has a function property in itself (usually considered a static property in theory), you can use this to invoke it.

StaticCall ( ) : InternalHandle

Calls the native side to invoke the function associated with this managed function wrapper.

Note: This method simply calls 'Handle.Call()' without a function name.

V8Function ( ) : System.Dynamic
V8Function ( IV8Function proxy ) : System.Dynamic

Method Details

Call() public méthode

Calls the native side to invoke the function associated with this managed function wrapper. The '_this' property is the "this" object within the function when called.

Note: This method simply calls 'Handle.Call()' without a function name.

public Call ( InternalHandle _this ) : InternalHandle
_this InternalHandle
Résultat InternalHandle

Call() public méthode

If the function object has a function property in itself (usually considered a static property in theory), you can use this to invoke it.
public Call ( string functionName, InternalHandle _this ) : InternalHandle
functionName string
_this InternalHandle
Résultat InternalHandle

StaticCall() public méthode

Calls the native side to invoke the function associated with this managed function wrapper.

Note: This method simply calls 'Handle.Call()' without a function name.

public StaticCall ( ) : InternalHandle
Résultat InternalHandle

V8Function() public méthode

public V8Function ( ) : System.Dynamic
Résultat System.Dynamic

V8Function() public méthode

public V8Function ( IV8Function proxy ) : System.Dynamic
proxy IV8Function
Résultat System.Dynamic