Example #1
0
 private static void UnregisterButtonNotificationListener(Control controlContext, BlogProviderButtonNotificationReceivedHandler listener)
 {
     lock (_buttonNotificationListeners)
     {
         _buttonNotificationListeners.Remove(listener);
     }
 }
 private static void UnregisterButtonNotificationListener(Control controlContext, BlogProviderButtonNotificationReceivedHandler listener)
 {
     lock (_buttonNotificationListeners)
     {
         _buttonNotificationListeners.Remove(listener);
     }
 }
Example #3
0
 private static void RegisterButtonNotificationListener(Control controlContext, BlogProviderButtonNotificationReceivedHandler listener)
 {
     lock (_buttonNotificationListeners)
     {
         _buttonNotificationListeners[listener] = controlContext;
     }
 }
 private static void RegisterButtonNotificationListener(Control controlContext, BlogProviderButtonNotificationReceivedHandler listener)
 {
     lock (_buttonNotificationListeners)
     {
         _buttonNotificationListeners[listener] = controlContext;
     }
 }