/// <summary>
 /// Deletes a device by its token, stops sending PUSH-notifications to it.
 /// </summary>
 /// <returns><c>true</c>, if device was unregistered, <c>false</c> otherwise.</returns>
 /// <param name="pTokenType">Device token type.</param>
 /// <param name="token">Device token.</param>
 public bool UnregisterDevice(FTokenType tokenType, string token)
 {
     return false;
 }
Exemple #2
0
 /// <summary>
 /// Deletes a device by its token, stops sending PUSH-notifications to it.
 /// </summary>
 /// <returns><c>true</c>, if device was unregistered, <c>false</c> otherwise.</returns>
 /// <param name="pTokenType">Device token type.</param>
 /// <param name="token">Device token.</param>
 public bool UnregisterDevice(FTokenType tokenType, string token)
 {
     return(false);
 }
 /// <summary>
 /// Registers a device to send it PUSH-notifications in the future.
 /// </summary>
 /// <returns>Registration successful.</returns>
 public bool RegisterDevice(FTokenType tokenType, string token, string deviceModel, string systemVersion, string appVersion, bool appSandbox, string langCode)
 {
     return false;
 }
Exemple #4
0
 /// <summary>
 /// Registers a device to send it PUSH-notifications in the future.
 /// </summary>
 /// <returns>Registration successful.</returns>
 public bool RegisterDevice(FTokenType tokenType, string token, string deviceModel, string systemVersion, string appVersion, bool appSandbox, string langCode)
 {
     return(false);
 }