Esempio n. 1
0
 public void OnStackStateChanged(SipStackState newState, String description)
 {
     if (onStackEvent != null)
     {
         onStackEvent(this, new SipStackEventArgs(newState, description));
     }
 }
Esempio n. 2
0
 internal SipStackEventArgs(SipStackState state, String description)
 {
     mState = state;
     mDescription = description;
 }
Esempio n. 3
0
 public void OnStackStateChanged(SipStackState newState, String description)
 {
     if (onStackEvent != null)
     {
         onStackEvent(this, new SipStackEventArgs(newState, description));
     }
 }
Esempio n. 4
0
 internal SipStackEventArgs(SipStackState state, String description)
 {
     mState       = state;
     mDescription = description;
 }