Esempio n. 1
0
 public bool NotifyWithEvent(string type_, object data_ = null)
 {
     if (m_notifier == null)
     {
         return(false);
     }
     return(m_notifier.NotifyWithEvent(type_, data_));
 }
Esempio n. 2
0
 static public bool NotifyWithEvent(string type_, object data_ = null)
 {
     return(m_subject.NotifyWithEvent(type_, data_));
 }