Show / Hide Table of Contents

Class IdentityUserLookupController

Inheritance
object
IdentityUserLookupController
Implements
IIdentityUserLookupAppService
IApplicationService
IRemoteService
Namespace: Volo.Abp.Identity
Assembly: Volo.Abp.Identity.Pro.HttpApi.dll
Syntax
[Area("identity")]
[Route("api/identity/users/lookup")]
public class IdentityUserLookupController : AbpControllerBase, IIdentityUserLookupAppService, IApplicationService, IRemoteService

Constructors

IdentityUserLookupController(IIdentityUserLookupAppService)

Declaration
public IdentityUserLookupController(IIdentityUserLookupAppService lookupAppService)
Parameters
Type Name Description
IIdentityUserLookupAppService lookupAppService

Properties

LookupAppService

Declaration
protected IIdentityUserLookupAppService LookupAppService { get; }
Property Value
Type Description
IIdentityUserLookupAppService

Methods

FindByIdAsync(Guid)

Declaration
[HttpGet]
[Route("{id}")]
public virtual Task<UserData> FindByIdAsync(Guid id)
Parameters
Type Name Description
Guid id
Returns
Type Description
Task<UserData>

FindByUserNameAsync(string)

Declaration
[HttpGet]
[Route("by-username/{userName}")]
public virtual Task<UserData> FindByUserNameAsync(string userName)
Parameters
Type Name Description
string userName
Returns
Type Description
Task<UserData>

GetCountAsync(UserLookupCountInputDto)

Declaration
[HttpGet]
[Route("count")]
public Task<long> GetCountAsync(UserLookupCountInputDto input)
Parameters
Type Name Description
UserLookupCountInputDto input
Returns
Type Description
Task<long>

SearchAsync(UserLookupSearchInputDto)

Declaration
[HttpGet]
[Route("search")]
public Task<ListResultDto<UserData>> SearchAsync(UserLookupSearchInputDto input)
Parameters
Type Name Description
UserLookupSearchInputDto input
Returns
Type Description
Task<ListResultDto<UserData>>

Implements

IIdentityUserLookupAppService
Volo.Abp.Application.Services.IApplicationService
Volo.Abp.IRemoteService
In this article
Back to top Powered by Volosoft