Show / Hide Table of Contents

Class IdentityUserLookupAppService

Inheritance
object
IdentityAppServiceBase
IdentityUserLookupAppService
Implements
IIdentityUserLookupAppService
IApplicationService
IRemoteService
Namespace: Volo.Abp.Identity
Assembly: Volo.Abp.Identity.Pro.Application.dll
Syntax
[Obsolete("Use IdentityUserIntegrationService for module-to-module (or service-to-service) communication.")]
[Authorize("AbpIdentity.UserLookup")]
public class IdentityUserLookupAppService : IdentityAppServiceBase, IIdentityUserLookupAppService, IApplicationService, IRemoteService

Constructors

IdentityUserLookupAppService(IIdentityUserIntegrationService)

Declaration
public IdentityUserLookupAppService(IIdentityUserIntegrationService identityUserIntegrationService)
Parameters
Type Name Description
IIdentityUserIntegrationService identityUserIntegrationService

Properties

IdentityUserIntegrationService

Declaration
protected IIdentityUserIntegrationService IdentityUserIntegrationService { get; }
Property Value
Type Description
IIdentityUserIntegrationService

Methods

FindByIdAsync(Guid)

Declaration
public virtual Task<UserData> FindByIdAsync(Guid id)
Parameters
Type Name Description
Guid id
Returns
Type Description
Task<UserData>

FindByUserNameAsync(string)

Declaration
public virtual Task<UserData> FindByUserNameAsync(string userName)
Parameters
Type Name Description
string userName
Returns
Type Description
Task<UserData>

GetCountAsync(UserLookupCountInputDto)

Declaration
public virtual Task<long> GetCountAsync(UserLookupCountInputDto input)
Parameters
Type Name Description
UserLookupCountInputDto input
Returns
Type Description
Task<long>

SearchAsync(UserLookupSearchInputDto)

Declaration
public virtual 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