Table of Contents

Class AuthenticationEmailViewModelBase

Namespace
Dynamicweb.Users.Frontend.UserAuthentication.Email
Assembly
Dynamicweb.Users.dll

Represents the base view model for authentication email templates. Contains common properties shared across different authentication email types.

public abstract class AuthenticationEmailViewModelBase : ViewModelBase
Inheritance
AuthenticationEmailViewModelBase
Derived
Inherited Members

Properties

BaseUrl

The base URL of the website.

public Uri? BaseUrl { get; set; }

Property Value

Uri

Browser

The name of the client's browser.

public string? Browser { get; set; }

Property Value

string

Expiration

The date and time when the secret code or link expires.

public DateTimeOffset? Expiration { get; set; }

Property Value

DateTimeOffset?

IP

The client's IP address.

public string? IP { get; set; }

Property Value

string

OperationSystem

The name of the client's operation system.

public string? OperationSystem { get; set; }

Property Value

string
To top