Exemplo n.º 1
0
        public void WGClearLocalNotification(LocalMessageIOS localMessage)
        {
            string localMsgJsonString = JsonMapper.ToJson(localMessage);

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

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