Class ProxyMethodAttribute
Denotes an attribute that denotes the definition of a proxy method
Inheritance
ProxyMethodAttribute
Inherited Members
Namespace: NMF.Expressions
Assembly: NMF.Expressions.dll
Syntax
public abstract class ProxyMethodAttribute : Attribute
Constructors
| Edit this page View SourceProxyMethodAttribute(Type, string)
Creates a new instance
Declaration
protected ProxyMethodAttribute(Type proxyType, string methodName)
Parameters
Type | Name | Description |
---|---|---|
Type | proxyType | The type of the proxy |
string | methodName | The name of the method |
Properties
| Edit this page View SourceMethodName
The name of the method used as a proxy
Declaration
public string MethodName { get; }
Property Value
Type | Description |
---|---|
string |
ProxyType
The type in which the proxy method is defined
Declaration
public Type ProxyType { get; }
Property Value
Type | Description |
---|---|
Type |
Methods
| Edit this page View SourceInitializeProxyMethod(MethodInfo, Type[], out MethodInfo)
Finds the proxy method for the given source method
Declaration
public bool InitializeProxyMethod(MethodInfo sourceMethod, Type[] parameterTypes, out MethodInfo proxyMethod)
Parameters
Type | Name | Description |
---|---|---|
MethodInfo | sourceMethod | The method for which a proxy is needed |
Type[] | parameterTypes | The desired parameter types |
MethodInfo | proxyMethod | The proxy method |
Returns
Type | Description |
---|---|
bool | True, if a suitable method was found, otherwise False |
Exceptions
Type | Condition |
---|---|
ArgumentNullException | Thrown if parameterTypes is null |