Table of Contents

Class TokenRequestModel

Namespace
Dynamicweb.Security.Tokens
Assembly
Dynamicweb.Core.dll

Class that represents a token request, providing the relevant information needed to issue a token if valid.

public sealed class TokenRequestModel
Inheritance
TokenRequestModel
Inherited Members

Properties

DeviceId

The id of the device from where the token was requested.

public string DeviceId { get; set; }

Property Value

string

Password

The password or a hashed version of the user's password.

public string Password { get; set; }

Property Value

string

UserName

The username of the backend user requesting a token.

public string UserName { get; set; }

Property Value

string
To top