Interface ICallable
Represents common interface for typed method pointers.
Namespace: DotNext
Assembly: DotNext.dll
Syntax
public interface ICallable
Properties
| Improve this Doc View SourceIsEmpty
Indicates that this delegate doesn't refer to any method.
Declaration
bool IsEmpty { get; }
Property Value
| Type | Description |
|---|---|
| Boolean |
Target
Gets object targeted by this pointer.
Declaration
object Target { get; }
Property Value
| Type | Description |
|---|---|
| Object | The object targeted by this pointer. |
Methods
| Improve this Doc View SourceDynamicInvoke(Object[])
Invokes the method dynamically.
Declaration
object DynamicInvoke(params object[] args)
Parameters
| Type | Name | Description |
|---|---|---|
| Object[] | args | The arguments to be passed into the method. |
Returns
| Type | Description |
|---|---|
| Object | Invocation result. |