Show / Hide Table of Contents

Class CodeEmailViewModel

Base class for all e-mail messages that should include a code to the user.

Inheritance
Object
EmailViewModel
EmailViewModel
CodeEmailViewModel
ConfirmEmailViewModel
OneTimePasswordViewModel
TwoFactorCodeEmailViewModel
Inherited Members
EmailViewModel.ApplicationName
EmailViewModel.LogoUrl
EmailViewModel.To
EmailViewModel.Subject
Object.Equals(Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: IRM.AspNetCore.Identity.Mail
Assembly: IRM.AspNetCore.Identity.Mail.dll
Syntax
public abstract class CodeEmailViewModel : EmailViewModel

Constructors

CodeEmailViewModel(EmailAddress, String)

Creates a new instance of CodeEmailViewModel.

Declaration
protected CodeEmailViewModel(EmailAddress to, string code)
Parameters
EmailAddress to

The reciever of the email.

String code

The code that should be send to the user.

Properties

Code

Gets or sets the code that should be send to the user.

Declaration
public string Code { get; set; }
Property Value
String

Back to top Generated by DocFX