Table of Contents

Class ConfirmUserParameters

Namespace
Kentico.Membership
Assembly
Kentico.Membership.dll

Parameters needed to confirm user registration.

public sealed class ConfirmUserParameters
Inheritance
object
ConfirmUserParameters
Extension Methods

Constructors

ConfirmUserParameters(AdminApplicationUser, string, string, UserManager<AdminApplicationUser>)

Initializes a new instance of ConfirmUserParameters

public ConfirmUserParameters(AdminApplicationUser user, string userName, string password, UserManager<AdminApplicationUser> userManager)

Parameters

user AdminApplicationUser
userName string
password string
userManager UserManager<AdminApplicationUser>

Properties

Password

Gets password provided by user.

public string Password { get; }

Property Value

string

User

Gets user instance.

public AdminApplicationUser User { get; }

Property Value

AdminApplicationUser

UserManager

Gets the user manager.

public UserManager<AdminApplicationUser> UserManager { get; }

Property Value

UserManager<AdminApplicationUser>

UserName

Gets user name provided by user.

public string UserName { get; }

Property Value

string