Class IdentityUserLookupAppService
Inheritance
IdentityUserLookupAppService
Assembly: Volo.Abp.Identity.Application.dll
Syntax
[Obsolete("Use IdentityUserIntegrationService for module-to-module (or service-to-service) communication.")]
[Authorize("AbpIdentity.UserLookup")]
public class IdentityUserLookupAppService : IdentityAppServiceBase, IAvoidDuplicateCrossCuttingConcerns, IValidationEnabled, IUnitOfWorkEnabled, IAuditingEnabled, IGlobalFeatureCheckingEnabled, ITransientDependency, IIdentityUserLookupAppService, IApplicationService, IRemoteService
Constructors
IdentityUserLookupAppService(IIdentityUserIntegrationService)
Declaration
public IdentityUserLookupAppService(IIdentityUserIntegrationService identityUserIntegrationService)
Parameters
Properties
IdentityUserIntegrationService
Declaration
protected IIdentityUserIntegrationService IdentityUserIntegrationService { get; }
Property Value
Methods
FindByIdAsync(Guid)
Declaration
public virtual Task<UserData> FindByIdAsync(Guid id)
Parameters
Type |
Name |
Description |
Guid |
id |
|
Returns
FindByUserNameAsync(string)
Declaration
public virtual Task<UserData> FindByUserNameAsync(string userName)
Parameters
Type |
Name |
Description |
string |
userName |
|
Returns
Declaration
public virtual Task<long> GetCountAsync(UserLookupCountInputDto input)
Parameters
Returns
Declaration
public virtual Task<ListResultDto<UserData>> SearchAsync(UserLookupSearchInputDto input)
Parameters
Returns
Implements
Extension Methods