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

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

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