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

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,
	ParseQuery<ParseInstallation> query
)

Parameters

alert
Type: SystemString
The alert message to send.
query
Type: ParseParseQueryParseInstallation
A query filtering the devices which should receive this Push Notification.

Return Value

Type: Task
See Also

Reference