Метод | Описание | |
---|---|---|
GetMethodInvokerByAttribute ( |
Create a MethodInvoker from the delegate based on the attributeType. Ensure that the decorated method has a valid set of parameters.
|
|
GetMethodInvokerByName ( object targetObject, string methodName, bool paramsRequired ) : IMethodInvoker |
Create a IMethodInvoker using the provided method name to search.
|
|
GetMethodInvokerForInterface ( |
Create a IMethodInvoker using the provided interface, and method name from that interface.
|
|
GetMethodInvokerForSingleArgument ( object target ) : IMethodInvoker |
Create a IMethodInvoker for the delegate from a single public method.
|
|
GetParamTypesString ( ) : string |
Create a String representation of the array of parameter types.
|
public static GetMethodInvokerByAttribute ( |
||
attributeType | The attribute type. | |
target | object | The target. |
Результат | IMethodInvoker |
public static GetMethodInvokerByName ( object targetObject, string methodName, bool paramsRequired ) : IMethodInvoker | ||
targetObject | object | The target object to be invoked. |
methodName | string | The method name of the method to be invoked. |
paramsRequired | bool | Boolean indicating whether the parameters are required. If false, a no args version of the method will be searched for. |
Результат | IMethodInvoker |
public static GetMethodInvokerForInterface ( |
||
cls | The interface to search for the method named. | |
methodName | string | The method name of the method to be invoked. |
targetObject | object | The target object to be invoked. |
Результат | IMethodInvoker |
public static GetMethodInvokerForSingleArgument ( object target ) : IMethodInvoker | ||
target | object | The target. |
Результат | IMethodInvoker |
public static GetParamTypesString ( ) : string | ||
Результат | string |