Class MethodAccessor<T, TDelegate>
A type containing utilities for calling non-public methods on an object.
Inheritance
System.Object
MethodAccessor<T, TDelegate>
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: IPA.Utilities
Assembly: IPA.Loader.dll
Syntax
public static class MethodAccessor<T, TDelegate>
where TDelegate : Delegate
Type Parameters
| Name | Description |
|---|---|
| T | the type to find the methods on |
| TDelegate | the delegate type to create, and to use as a signature to search for |
Methods
| Improve this Doc View SourceGetDelegate(String)
Gets a delegate to the named method with the signature specified by TDelegate.
Declaration
public static TDelegate GetDelegate(string name)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | the name of the method to get |
Returns
| Type | Description |
|---|---|
| TDelegate | a delegate that can call the specified method |
Exceptions
| Type | Condition |
|---|---|
| System.MissingMethodException | if |
| System.ArgumentException | if the method found returns a type incompatable with the return type of |