Exemple #1
0
        public void WGClearLocalNotification(LocalMessageIOS localMessage)
        {
            string localMsgJsonString = JsonMapper.ToJson(localMessage);

            iOSConnector.ClearLocalNotification(localMsgJsonString);
        }
Exemple #2
0
        public long WGAddLocalNotificationAtFront(LocalMessageIOS localMessage)
        {
            string localMsgJsonString = JsonMapper.ToJson(localMessage);

            return(iOSConnector.AddLocalNotificationAtFront(localMsgJsonString));
        }
Exemple #3
0
 public void WGClearLocalNotification(LocalMessageIOS localMessage)
 {
 }
Exemple #4
0
 public long WGAddLocalNotificationAtFront(LocalMessageIOS localMessage)
 {
     return(0);
 }
 public void WGClearLocalNotification(LocalMessageIOS localMessage)
 {
     MsdkUtil.Log("Error : This interface is only use in iOS!");
     throw new NotImplementedException();
 }
 public long WGAddLocalNotificationAtFront(LocalMessageIOS localMessage)
 {
     MsdkUtil.Log("Error : This interface is only use in iOS!");
     throw new NotImplementedException();
 }