Click or drag to resize
EventManagerRemoveListener Method (EventManagerEventDelegate)
Unregisters the specified delegate for all events. Note that this will remove the delegate from the list of listeners interested in all events, only: Calling this function will not remove the delegate from specific events.

Namespace: Slash.ECS.Events
Assembly: Slash.ECS (in Slash.ECS.dll) Version: 1.0.6018.40178
Syntax
public void RemoveListener(
	EventManagerEventDelegate callback
)

Parameters

callback
Type: Slash.ECS.EventsEventManagerEventDelegate
Delegate to remove.
Exceptions
ExceptionCondition
ArgumentNullExceptionSpecified delegate is null.
ArgumentNullExceptionSpecified event type is null.
See Also