C# 클래스 Jurassic.Compiler.JSBinderMethod

상속: BinderMethod
파일 보기 프로젝트 열기: paulbartrum/jurassic 1 사용 예제들

공개 메소드들

메소드 설명
GetArguments ( int argumentCount ) : IEnumerable

Gets an enumerable list of argument objects, equal in size to argumentCount.

JSBinderMethod ( MethodInfo method, JSFunctionFlags flags = JSFunctionFlags.None ) : System

Creates a new FunctionBinderMethod instance.

보호된 메소드들

메소드 설명
GetParameters ( ) : System.Reflection.ParameterInfo[]

Gets an array of method parameters.

비공개 메소드들

메소드 설명
Init ( JSFunctionFlags flags ) : void

Creates a new FunctionBinderMethod instance.

메소드 상세

GetArguments() 공개 메소드

Gets an enumerable list of argument objects, equal in size to argumentCount.
public GetArguments ( int argumentCount ) : IEnumerable
argumentCount int The number of arguments to return.
리턴 IEnumerable

GetParameters() 보호된 메소드

Gets an array of method parameters.
protected GetParameters ( ) : System.Reflection.ParameterInfo[]
리턴 System.Reflection.ParameterInfo[]

JSBinderMethod() 공개 메소드

Creates a new FunctionBinderMethod instance.
public JSBinderMethod ( MethodInfo method, JSFunctionFlags flags = JSFunctionFlags.None ) : System
method System.Reflection.MethodInfo The method to call.
flags JSFunctionFlags Flags that modify the binding process.
리턴 System