C# Класс Jurassic.Compiler.JSBinderMethod

Наследование: BinderMethod
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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