Unregister() public method

public Unregister ( ) : void
return void
Esempio n. 1
0
 void UnregisterTest()
 {
     LLQNotifier.Default.Notify(new Event1()
     {
         Flag = "test A"
     });
     _s.Unregister();
     LLQNotifier.Default.Notify(new Event1()
     {
         Flag = "test B"
     });
     LLQNotifier.Default.Register(_s);
     LLQNotifier.Default.Notify(new Event1()
     {
         Flag = "test C"
     });
     _s.Unregister();
 }