Class CreateHeadlessTokenParameters
Create headless token parameters.
public sealed class CreateHeadlessTokenParameters
- Inheritance
-
objectCreateHeadlessTokenParameters
- Extension Methods
Constructors
CreateHeadlessTokenParameters(string, int, bool)
Initializes a new instance of CreateHeadlessTokenParameters.
[Obsolete("Constructor was meant to have all its parameters compulsory. Use the other constructor.")]
[ObsoleteSince(28, 2)]
public CreateHeadlessTokenParameters(string displayName, int headlessChannelId, bool enabled = true)
Parameters
displayName
stringDisplay name of the token.
headlessChannelId
intThe ID of the headless channel the token belongs to.
enabled
boolIndicates whether the token is enabled. Default value is true.
CreateHeadlessTokenParameters(string, int, bool, HeadlessTokenAccessType)
Initializes a new instance of CreateHeadlessTokenParameters.
public CreateHeadlessTokenParameters(string displayName, int headlessChannelId, bool enabled, HeadlessTokenAccessType headlessTokenAccessType)
Parameters
displayName
stringDisplay name of the token.
headlessChannelId
intThe ID of the headless channel the token belongs to.
enabled
boolIndicates whether the token is enabled. Default value is true.
headlessTokenAccessType
HeadlessTokenAccessTypeThe access type of the token. Default value is Published.
Properties
DisplayName
Display name of the token.
public string DisplayName { get; set; }
Property Value
- string
Enabled
Indicates whether the token is enabled.
public bool Enabled { get; set; }
Property Value
- bool
HeadlessChannelId
The ID of the headless channel the token belongs to.
public int HeadlessChannelId { get; set; }
Property Value
- int
HeadlessTokenAccessType
The access type of the token.
public HeadlessTokenAccessType HeadlessTokenAccessType { get; set; }