ParsePushSendAlertAsync Method (String, String)Parse
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();

Namespace: Parse
Assembly: Parse.WinRT (in Parse.WinRT.dll) Version: 1.5.5.0 (1.5.5.0)
Syntax

public static Task SendAlertAsync(
	string alert,
	string channel
)

Parameters

alert
Type: SystemString
The alert message to send.
channel
Type: SystemString
An Installation must be subscribed to channel to receive this Push Notification.

Return Value

Type: Task
See Also

Reference