Class EventSubscription
Provides methods for safe manipulation of event handlers using atomic operations.
Inherited Members
Namespace: Coree.NETStandard.Utilities
Assembly: Coree.NETStandard.dll
Syntax
public static class EventSubscription
Methods
| Edit this page View SourceAddHandler<TDelegate>(ref TDelegate?, TDelegate)
Adds an event handler to the handler field atomically. Safe for null initial values.
Declaration
public static void AddHandler<TDelegate>(ref TDelegate? handlerField, TDelegate handlerToAdd) where TDelegate : Delegate?
Parameters
Type | Name | Description |
---|---|---|
TDelegate | handlerField | The field holding the delegate to which the new handler will be added. Can be null initially. |
TDelegate | handlerToAdd | The event handler delegate to add. |
Type Parameters
Name | Description |
---|---|
TDelegate | The type of the delegate for the event handler. |
RemoveHandler<TDelegate>(ref TDelegate?, TDelegate)
Removes an event handler from the handler field atomically. Safe for null values.
Declaration
public static void RemoveHandler<TDelegate>(ref TDelegate? handlerField, TDelegate handlerToRemove) where TDelegate : Delegate?
Parameters
Type | Name | Description |
---|---|---|
TDelegate | handlerField | The field holding the delegate from which the handler will be removed. Can be null. |
TDelegate | handlerToRemove | The event handler delegate to remove. |
Type Parameters
Name | Description |
---|---|
TDelegate | The type of the delegate for the event handler. |