Class ScopeClientProxy
Implements
Inherited Members
Namespace: Volo.Abp.OpenIddict
Assembly: Volo.Abp.OpenIddict.Pro.HttpApi.Client.dll
Syntax
[Dependency(ReplaceServices = true)]
[ExposeServices(new Type[] { typeof(IScopeAppService), typeof(ScopeClientProxy) })]
public class ScopeClientProxy : ClientProxyBase<IScopeAppService>, ITransientDependency, IScopeAppService, ICrudAppService<ScopeDto, Guid, GetScopeListInput, CreateScopeInput, UpdateScopeInput>, ICrudAppService<ScopeDto, ScopeDto, Guid, GetScopeListInput, CreateScopeInput, UpdateScopeInput>, IReadOnlyAppService<ScopeDto, ScopeDto, Guid, GetScopeListInput>, ICreateUpdateAppService<ScopeDto, Guid, CreateScopeInput, UpdateScopeInput>, ICreateAppService<ScopeDto, CreateScopeInput>, IUpdateAppService<ScopeDto, Guid, UpdateScopeInput>, IDeleteAppService<Guid>, IApplicationService, IRemoteService
Constructors
ScopeClientProxy()
Declaration
public ScopeClientProxy()
Methods
CreateAsync(CreateScopeInput)
Declaration
public virtual Task<ScopeDto> CreateAsync(CreateScopeInput input)
Parameters
Type | Name | Description |
---|---|---|
CreateScopeInput | input |
Returns
Type | Description |
---|---|
Task<ScopeDto> |
DeleteAsync(Guid)
Declaration
public virtual Task DeleteAsync(Guid id)
Parameters
Type | Name | Description |
---|---|---|
Guid | id |
Returns
Type | Description |
---|---|
Task |
GetAllScopesAsync()
Declaration
public virtual Task<List<ScopeDto>> GetAllScopesAsync()
Returns
Type | Description |
---|---|
Task<List<ScopeDto>> |
GetAsync(Guid)
Declaration
public virtual Task<ScopeDto> GetAsync(Guid id)
Parameters
Type | Name | Description |
---|---|---|
Guid | id |
Returns
Type | Description |
---|---|
Task<ScopeDto> |
GetListAsync(GetScopeListInput)
Declaration
public virtual Task<PagedResultDto<ScopeDto>> GetListAsync(GetScopeListInput input)
Parameters
Type | Name | Description |
---|---|---|
GetScopeListInput | input |
Returns
Type | Description |
---|---|
Task<PagedResultDto<ScopeDto>> |
UpdateAsync(Guid, UpdateScopeInput)
Declaration
public virtual Task<ScopeDto> UpdateAsync(Guid id, UpdateScopeInput input)
Parameters
Type | Name | Description |
---|---|---|
Guid | id | |
UpdateScopeInput | input |
Returns
Type | Description |
---|---|
Task<ScopeDto> |