ParsePushSubscribeAsync Method (String, CancellationToken)Parse
Subscribe the current installation to this channel. This is shorthand for:
var installation = ParseInstallation.CurrentInstallation;
installation.AddUniqueToList("channels", channel);
installation.SaveAsync(cancellationToken);

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

public static Task SubscribeAsync(
	string channel,
	CancellationToken cancellationToken
)

Parameters

channel
Type: SystemString
The channel to which this installation should subscribe.
cancellationToken
Type: System.ThreadingCancellationToken
CancellationToken to cancel the current operation.

Return Value

Type: Task
See Also

Reference