Show / Hide Table of Contents

Class IdentitySecurityLogController

Inheritance
object
IdentitySecurityLogController
Implements
IIdentitySecurityLogAppService
IApplicationService
IRemoteService
Namespace: Volo.Abp.Identity
Assembly: Volo.Abp.Identity.Pro.HttpApi.dll
Syntax
[Area("identity")]
[Route("api/identity/security-logs")]
public class IdentitySecurityLogController : AbpControllerBase, IIdentitySecurityLogAppService, IApplicationService, IRemoteService

Constructors

IdentitySecurityLogController(IIdentitySecurityLogAppService)

Declaration
public IdentitySecurityLogController(IIdentitySecurityLogAppService identitySecurityLogAppService)
Parameters
Type Name Description
IIdentitySecurityLogAppService identitySecurityLogAppService

Properties

IdentitySecurityLogAppService

Declaration
protected IIdentitySecurityLogAppService IdentitySecurityLogAppService { get; }
Property Value
Type Description
IIdentitySecurityLogAppService

Methods

GetAsync(Guid)

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

GetListAsync(GetIdentitySecurityLogListInput)

Declaration
[HttpGet]
public Task<PagedResultDto<IdentitySecurityLogDto>> GetListAsync(GetIdentitySecurityLogListInput input)
Parameters
Type Name Description
GetIdentitySecurityLogListInput input
Returns
Type Description
Task<PagedResultDto<IdentitySecurityLogDto>>

GetMyAsync(Guid)

Declaration
[HttpGet]
[Route("my/{id}")]
public Task<IdentitySecurityLogDto> GetMyAsync(Guid id)
Parameters
Type Name Description
Guid id
Returns
Type Description
Task<IdentitySecurityLogDto>

GetMyListAsync(GetIdentitySecurityLogListInput)

Declaration
[HttpGet]
[Route("my")]
public Task<PagedResultDto<IdentitySecurityLogDto>> GetMyListAsync(GetIdentitySecurityLogListInput input)
Parameters
Type Name Description
GetIdentitySecurityLogListInput input
Returns
Type Description
Task<PagedResultDto<IdentitySecurityLogDto>>

Implements

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