Esempio n. 1
0
        void _IUccSubscriptionEvents.OnUnsubscribe(
            UccSubscription subscription,
            UccSubscriptionEvent eventInfo)
        {
            Debug.WriteLine("OnUnsubscribe");

            if (eventInfo.IsComplete)
            {
                foreach (UccPresentity presenty in eventInfo.Presentities)
                {
                    IUccOperationProgressEvent progressEvent = eventInfo.GetOperationInfo(presenty);

                    Debug.WriteLine(String.Format("Presentity: <{0}> {1}", presenty.Uri.AddressOfRecord.ToString(), Errors.ToString(progressEvent.StatusCode)), "OnUnsubscribe");
                }
            }
        }
Esempio n. 2
0
 public void OnUnsubscribe(UccSubscription pSubscription, UccSubscriptionEvent pEventInfo)
 {
     throw new NotImplementedException();
 }
Esempio n. 3
0
 void _IUccSubscriptionEvents.OnQuery(
     UccSubscription subscription,
     UccSubscriptionEvent eventInfo)
 {
 }