Interface ISubscribableEvent
Interface for subscribable events (i.e. SubscribableEvent<T>). Declared as interface so all classes may work with common interface no matter which type of wrapped event.
Assembly: Eco.Shared.dll
Syntax
public interface ISubscribableEvent
Methods
Add(Delegate)
Declaration
void Add(Delegate handler)
Parameters
Type |
Name |
Description |
System.Delegate |
handler |
|
Remove(Delegate)
Declaration
void Remove(Delegate handler)
Parameters
Type |
Name |
Description |
System.Delegate |
handler |
|
Extension Methods