ParsePushSendDataAsync Method (IDictionaryString, Object, String)Parse
Pushes an arbitrary payload to every device subscribed to channel. This is shorthand for:
var push = new ParsePush();
push.Channels = new List<string> { channel };
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,
	string channel
)

Parameters

data
Type: System.Collections.GenericIDictionaryString, Object
A push payload. See the ParsePush.Data property for more information.
channel
Type: SystemString
An Installation must be subscribed to channel to receive this Push Notification.

Return Value

Type: Task
See Also

Reference