Table of Contents

Class UserList

Namespace
Kentico.Xperience.Admin.Base.UIPages
Assembly
Kentico.Xperience.Admin.Base.dll

Users listing page

public sealed class UserList : ListingPage, IPage
Inheritance
object
UserList
Implements
Inherited Members
Extension Methods

Constructors

UserList(UserManager<AdminApplicationUser>, IEmailService, IHttpContextAccessor, IRoleInfoProvider, IUserRoleInfoProvider, IUserEmailService, IPageLinkGenerator, IDateTimeNowService, IOptions<AdminIdentityOptions>, IOptions<AdminExternalAuthenticationProviderOptions>, IAuthenticatedUserAccessor)

Initialize instance.

public UserList(UserManager<AdminApplicationUser> userManager, IEmailService emailService, IHttpContextAccessor httpContextAccessor, IRoleInfoProvider roleInfoProvider, IUserRoleInfoProvider userRoleInfoProvider, IUserEmailService userEmailService, IPageLinkGenerator pageLinkGenerator, IDateTimeNowService dateTimeNowService, IOptions<AdminIdentityOptions> adminIdentityOptionsAccessor, IOptions<AdminExternalAuthenticationProviderOptions> externalAuthenticationProviderOptionsAccessor, IAuthenticatedUserAccessor authenticatedUserAccessor)

Parameters

userManager UserManager<AdminApplicationUser>
emailService IEmailService
httpContextAccessor IHttpContextAccessor
roleInfoProvider IRoleInfoProvider
userRoleInfoProvider IUserRoleInfoProvider
userEmailService IUserEmailService
pageLinkGenerator IPageLinkGenerator
dateTimeNowService IDateTimeNowService
adminIdentityOptionsAccessor IOptions<AdminIdentityOptions>
externalAuthenticationProviderOptionsAccessor IOptions<AdminExternalAuthenticationProviderOptions>
authenticatedUserAccessor IAuthenticatedUserAccessor

Properties

ObjectType

Type of the info objects that are listed. Corresponds to the OBJECT_TYPE property of the info object or PredefinedObjectType.

protected override string ObjectType { get; }

Property Value

string

Methods

ConfigurePage()

Allows configure and share page specific values prior invocation of the ConfigureTemplateProperties(TClientProperties) or command method.

public override Task ConfigurePage()

Returns

Task

Delete(int)

Deletes user specified by the id parameter.

public override Task<ICommandResponse<RowActionResult>> Delete(int id)

Parameters

id int

Returns

Task<ICommandResponse<RowActionResult>>

DisableUser(int)

Disables the user specified by the id parameter.

public Task<ICommandResponse<RowActionResult>> DisableUser(int id)

Parameters

id int

Returns

Task<ICommandResponse<RowActionResult>>

EnableUser(int)

Enables the user specified by the id parameter.

public Task<ICommandResponse<RowActionResult>> EnableUser(int id)

Parameters

id int

Returns

Task<ICommandResponse<RowActionResult>>

ResendInvitation(int)

Sends new registration invitation email to the user specified by the id parameter. The user can't have completed their registration.

public Task<ICommandResponse<RowActionResult>> ResendInvitation(int id)

Parameters

id int

Returns

Task<ICommandResponse<RowActionResult>>