Pushes an arbitrary payload to every device subscribed to any of channels. This is shorthand for:
var push = new ParsePush(); push.Channels = channels; 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, IEnumerable<string> channels )
Parameters
- data
- Type: System.Collections.GenericIDictionaryString, Object
A push payload. See the ParsePush.Data property for more information. - channels
- Type: System.Collections.GenericIEnumerableString
An Installation must be subscribed to any of channels to receive this Push Notification.
Return Value
Type: TaskSee Also