Overload List
Name | Description | |
---|---|---|
SendAlertAsync(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(); | |
SendAlertAsync(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(); | |
SendAlertAsync(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(); | |
SendAlertAsync(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(); |
See Also