ParsePushUnsubscribeAsync Method (String)Parse
Unsubscribe the current installation from this channel. This is shorthand for:
var installation = ParseInstallation.CurrentInstallation;
installation.Remove("channels", channel);
installation.SaveAsync();

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

public static Task UnsubscribeAsync(
	string channel
)

Parameters

channel
Type: SystemString
The channel from which this installation should unsubscribe.

Return Value

Type: Task
See Also

Reference