Pushes an arbitrary payload to every device matching target. This is shorthand for:
var push = new ParsePush(); push.Query = query push.Data = data; 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 SendDataAsync( IDictionary<string, Object> data, ParseQuery<ParseInstallation> query )
Parameters
- data
- Type: System.Collections.GenericIDictionaryString, Object
A push payload. See the ParsePush.Data property for more information. - query
- Type: ParseParseQueryParseInstallation
A query filtering the devices which should receive this Push Notification.
Return Value
Type: TaskSee Also