Class DynamicDelegate
The DynamicDelegate allows user-defined delegate routes bound to an System.Object reference.
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: Exiled.API.Features.DynamicEvents
Assembly: Exiled.API.dll
Syntax
public class DynamicDelegate : TypeCastObject<DynamicEventDispatcher>
Constructors
| Improve this Doc View SourceDynamicDelegate()
Initializes a new instance of the DynamicDelegate class.
Declaration
public DynamicDelegate()
DynamicDelegate(Object, Action)
Initializes a new instance of the DynamicDelegate class.
Declaration
public DynamicDelegate(object target, Action delegate)
Parameters
Type | Name | Description |
---|---|---|
System.Object | target | |
System.Action | delegate |
Properties
| Improve this Doc View SourceDelegate
Gets the DynamicDelegate's delegate.
Declaration
public Action Delegate { get; }
Property Value
Type | Description |
---|---|
System.Action |
Target
Gets the DynamicDelegate's target.
Declaration
public object Target { get; }
Property Value
Type | Description |
---|---|
System.Object |