public void OnStackStateChanged(SipStackState newState, String description)
 {
     if (onStackEvent != null)
     {
         onStackEvent(this, new SipStackEventArgs(newState, description));
     }
 }
示例#2
0
 internal SipStackEventArgs(SipStackState state, String description)
 {
     mState = state;
     mDescription = description;
 }
示例#3
0
 public void OnStackStateChanged(SipStackState newState, String description)
 {
     if (onStackEvent != null)
     {
         onStackEvent(this, new SipStackEventArgs(newState, description));
     }
 }
 internal SipStackEventArgs(SipStackState state, String description)
 {
     mState       = state;
     mDescription = description;
 }