Esempio n. 1
0
 /**
  * Set the delegate implementation.
  *
  * @param _delegate The delegate implementing platform specific functions.
  */
 public void SetDelegate(INotificationLocal _delegate)
 {
     this._delegate = _delegate;
 }
Esempio n. 2
0
 /**
  * Constructor with delegate.
  *
  * @param _delegate The delegate implementing platform specific functions.
  */
 public NotificationLocalBridge(INotificationLocal _delegate) : base()
 {
     this._delegate = _delegate;
 }