C# Класс Castle.MonoRail.Framework.Helpers.DynamicDispatchSupport

DynamicDispatch support is an infrastructure that mimics a dynamic language/environment. It is not finished but the idea is to allow plugins to add operations to the generators.
Показать файл Открыть проект

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

Метод Описание
Dispatch ( string method ) : object

Dispatches the specified method.

IsGeneratorMethod ( string method ) : bool

Determines whether [is generator method] [the specified method].

Защищенные методы

Метод Описание
PopulateAvailableMethods ( IDictionary generatorMethods, MethodInfo methods ) : void

Populates the available methods.

Приватные методы

Метод Описание
BuildMethodArgs ( MethodInfo method, object methodArguments, int paramArrayIndex ) : object[]

Описание методов

Dispatch() публичный Метод

Dispatches the specified method.
public Dispatch ( string method ) : object
method string The method.
Результат object

IsGeneratorMethod() публичный Метод

Determines whether [is generator method] [the specified method].
public IsGeneratorMethod ( string method ) : bool
method string The method.
Результат bool

PopulateAvailableMethods() защищенный статический Метод

Populates the available methods.
protected static PopulateAvailableMethods ( IDictionary generatorMethods, MethodInfo methods ) : void
generatorMethods IDictionary The generator methods.
methods System.Reflection.MethodInfo The methods.
Результат void