ParsePushUnsubscribeAsync Method (IEnumerableString, CancellationToken)Parse
Unsubscribe the current installation from these channels. This is shorthand for:
var installation = ParseInstallation.CurrentInstallation;
installation.RemoveAllFromList("channels", channels);
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 UnsubscribeAsync(
	IEnumerable<string> channels,
	CancellationToken cancellationToken
)

Parameters

channels
Type: System.Collections.GenericIEnumerableString
The channels from which this installation should unsubscribe.
cancellationToken
Type: System.ThreadingCancellationToken
CancellationToken to cancel the current operation.

Return Value

Type: Task
See Also

Reference