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();
Namespace: Parse
Assembly: Parse.WinRT (in Parse.WinRT.dll) Version: 1.5.5.0 (1.5.5.0)
Syntax
Parameters
- alert
- Type: SystemString
The alert message to send. - channels
- Type: System.Collections.GenericIEnumerableString
An Installation must be subscribed to any of channels to receive this Push Notification.
Return Value
Type: TaskSee Also