ParsePushSendAlertAsync Method Parse
Overload List

  NameDescription
Public methodStatic memberSendAlertAsync(String)
Pushes a simple message to every device. This is shorthand for:
var push = new ParsePush();
push.Data = new Dictionary<string, object>{{"alert", alert}};
return push.SendAsync();
Public methodStatic memberSendAlertAsync(String, ParseQueryParseInstallation)
Pushes a simple message to every device matching the target query. This is shorthand for:
var push = new ParsePush();
push.Query = query;
push.Data = new Dictionary<string, object>{{"alert", alert}};
return push.SendAsync();
Public methodStatic memberSendAlertAsync(String, IEnumerableString)
Pushes a simple message to every device subscribed to any of channels. This is shorthand for:
var push = new ParsePush();
push.Channels = channels;
push.Data = new Dictionary<string, object>{{"alert", alert}};
return push.SendAsync();
Public methodStatic memberSendAlertAsync(String, String)
Pushes a simple message to every device subscribed to channel. This is shorthand for:
var push = new ParsePush();
push.Channels = new List<string> { channel };
push.Data = new Dictionary<string, object>{{"alert", alert}};
return push.SendAsync();
Top
See Also

Reference