Skip to main content
Table of Contents

Class LoginRequest

Namespace
Stratara.Identity.Core.Models
Assembly
Stratara.Identity.Core.dll

Payload sent by the client to perform a password sign-in against the identity endpoint.

[ExcludeFromCodeCoverage]
public sealed class LoginRequest
Inheritance
LoginRequest
Inherited Members
Extension Methods

Properties

Email

The user's email address. Required and validated as an email format.

[Required]
[Display(Name = "Email Address")]
[EmailAddress]
public string Email { get; set; }

Property Value

string

Password

The user's password in clear text (transmitted over TLS).

[Required]
[Display(Name = "Password")]
[DataType(DataType.Password)]
public string Password { get; set; }

Property Value

string