PushSettings Constructors

Definition

Overloads

PushSettings()

Initializes a new instance of the PushSettings class.

PushSettings(Boolean, String, String, String, String, String, String, String)

Initializes a new instance of the PushSettings class.

PushSettings()

Initializes a new instance of the PushSettings class.

public PushSettings ();
Public Sub New ()

Applies to

PushSettings(Boolean, String, String, String, String, String, String, String)

Initializes a new instance of the PushSettings class.

public PushSettings (bool isPushEnabled, string id = default, string name = default, string kind = default, string type = default, string tagWhitelistJson = default, string tagsRequiringAuth = default, string dynamicTagsJson = default);
new Microsoft.Azure.Management.WebSites.Models.PushSettings : bool * string * string * string * string * string * string * string -> Microsoft.Azure.Management.WebSites.Models.PushSettings
Public Sub New (isPushEnabled As Boolean, Optional id As String = Nothing, Optional name As String = Nothing, Optional kind As String = Nothing, Optional type As String = Nothing, Optional tagWhitelistJson As String = Nothing, Optional tagsRequiringAuth As String = Nothing, Optional dynamicTagsJson As String = Nothing)

Parameters

isPushEnabled
Boolean

Gets or sets a flag indicating whether the Push endpoint is enabled.

id
String

Resource Id.

name
String

Resource Name.

kind
String

Kind of resource.

type
String

Resource type.

tagWhitelistJson
String

Gets or sets a JSON string containing a list of tags that are whitelisted for use by the push registration endpoint.

tagsRequiringAuth
String

Gets or sets a JSON string containing a list of tags that require user authentication to be used in the push registration endpoint. Tags can consist of alphanumeric characters and the following: '_', '@', '#', '.', ':', '-'. Validation should be performed at the PushRequestHandler.

dynamicTagsJson
String

Gets or sets a JSON string containing a list of dynamic tags that will be evaluated from user claims in the push registration endpoint.

Applies to