ParsePushSubscribeAsync Method (IEnumerableString)Parse
Subscribe the current installation to these channels. This is shorthand for:
var installation = ParseInstallation.CurrentInstallation;
installation.AddRangeUniqueToList("channels", channels);
installation.SaveAsync();

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

public static Task SubscribeAsync(
	IEnumerable<string> channels
)

Parameters

channels
Type: System.Collections.GenericIEnumerableString
The channels to which this installation should subscribe.

Return Value

Type: Task
See Also

Reference