Exemplo n.º 1
0
 void ButtonUnsubscribeHandler()
 {
     pubnub.Unsubscribe().ChannelGroups(listChannelGroups).Channels(listChannels).Async((result, status) => {
         Debug.Log("in Unsubscribe");
         if (status.Error)
         {
             Debug.Log(string.Format("In Example, Unsubscribe Error: {0} {1} {2}", status.StatusCode, status.ErrorData, status.Category));
         }
         else
         {
             Debug.Log(string.Format("DateTime {0}, In Unsubscribe, result: {1}", DateTime.UtcNow, result.Message));
         }
     });
 }