Interface IFileAppService
Namespace: Volo.Blogging.Files
Assembly: Volo.Blogging.Application.Contracts.dll
Syntax
public interface IFileAppService : IApplicationService
Methods
CreateAsync(FileUploadInputDto)
Declaration
Task<FileUploadOutputDto> CreateAsync(FileUploadInputDto input)
Parameters
Type | Name | Description |
---|---|---|
FileUploadInputDto | input |
Returns
Type | Description |
---|---|
Task<FileUploadOutputDto> |
GetAsync(String)
Declaration
Task<RawFileDto> GetAsync(string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | name |
Returns
Type | Description |
---|---|
Task<RawFileDto> |