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; }