C# 클래스 V8.Net.V8Function

Represents a basic JavaScript function object. By default, this object is used for the global environment.
상속: V8NativeObject, IV8Function
파일 보기 프로젝트 열기: rjamesnw/v8dotnet

공개 메소드들

메소드 설명
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

메소드 상세

Call() 공개 메소드

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
리턴 InternalHandle

Call() 공개 메소드

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
리턴 InternalHandle

StaticCall() 공개 메소드

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
리턴 InternalHandle

V8Function() 공개 메소드

public V8Function ( ) : System.Dynamic
리턴 System.Dynamic

V8Function() 공개 메소드

public V8Function ( IV8Function proxy ) : System.Dynamic
proxy IV8Function
리턴 System.Dynamic