Interface IMethodInfo
Discovers the attributes of a method
Namespace: AssemblyLoaderTypes
Assembly: AssemblyLoaderTypes.dll
Syntax
[Guid("3B2A423A-6DF4-4360-A9BF-C1B45AD18556")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IMethodInfo
Properties
ReturnType
Gets the return type of this method.
Declaration
string ReturnType { get; }
Property Value
| Type | Description |
|---|---|
| string |
Methods
Invoke(IDotNetObjectWrapper, IDotNetObjectWrapper)
Invokes the method or constructor represented by the current instance (obj parameter). An object containing the return value of the invoked method, or null in the case of a constructor. Only one method parameter is supported (can be null value).
Declaration
IDotNetObjectWrapper Invoke(IDotNetObjectWrapper obj, IDotNetObjectWrapper param)
Parameters
| Type | Name | Description |
|---|---|---|
| IDotNetObjectWrapper | obj | |
| IDotNetObjectWrapper | param |
Returns
| Type | Description |
|---|---|
| IDotNetObjectWrapper |