Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zleao/2aa83875f93c1ebbf866024b16ccd4ef to your computer and use it in GitHub Desktop.
Save zleao/2aa83875f93c1ebbf866024b16ccd4ef to your computer and use it in GitHub Desktop.
Examples of unsubscriptions using zoft.NotificationService
// Unsubscribe message with specified token
NotificationService.Unsubscribe(token);
// Unsubscribe all messages from a particular message type
NotificationService.Unsubscribe<MyMessage>();
NotificationService.Unsubscribe(typeof(MyMessage));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment