Table of Contents

Class UserPasswordRecoveryEmailViewModel

Namespace
Dynamicweb.Frontend
Assembly
Dynamicweb.dll

UserRecoverPasswordViewModel represents a password recovery request with token, url and the user object.

public class UserPasswordRecoveryEmailViewModel : ViewModelBase
Inheritance
UserPasswordRecoveryEmailViewModel
Inherited Members

Constructors

UserPasswordRecoveryEmailViewModel()

Initializes a new instance of the UserPasswordRecoveryEmailViewModel class.

public UserPasswordRecoveryEmailViewModel()

Properties

Gets or sets the recovery URL that the user needs to follow to complete the recovery process.

public string RecoveryLink { get; set; }

Property Value

string

The recovery URL - i.e. ?RecoveryToken={token} will be added to the link. I.e. https://www.mysolution.com/recoverpassword?RecoveryToken={token}.

RecoveryToken

Gets or sets the recovery token that is needed to reset the password.

public string RecoveryToken { get; set; }

Property Value

string

The recovery token.

User

Gets or sets the address.

public UserViewModel User { get; set; }

Property Value

UserViewModel

The address.

See Also

To top