I have a use case where i have to unsubscribe for an event. But prior to unsubscribing i want to make sure whether this guy has actully hooked on to this event or not.
Please let me know how i can achieve this ?
|
|
I have a use case where i have to unsubscribe for an event. But prior to unsubscribing i want to make sure whether this guy has actully hooked on to this event or not. Please let me know how i can achieve this ? |
||||||||||||
|
|
|
The sample class Publisher provides one event Publish. The method IsRegistered queries the events attached event handlers for the given class instance and returns true if there is at least one registered / attached event handler by this class instance. The overriden IsRegistered method does the same but for static types. Put this code into a console application project and hit F5 to debug, give it a try.
|
||||||||
|
|
|
assuming a pub/sub environment, just call provider.Unsubscribe(EventType,subscriber) and let the provider determine whether the subscriber is subscribed or not |
||
|
|
|
|
From Microsoft:
You're looking for the if (handler != null) part. It's null if there are not any subscribers, not null if there are subscribers. |
||
|
|
There are two ways you can do this:
The first case can look like the code below. This will create a new delegate chain in a temporary variable, with the delegate you want to removed, removed, and then compare the temp chain to the existing chain. If they're the same, the delegate was not present.
The second like the code below, this will simply see if the delegate you want to unsubscribe is present in the chain of delegates.
Note that you could, if you want, use similar code to handle the case where a delegate is being added twice. |
|||
|
|