Class StorageApiExecutor
Inheritance
StorageApiExecutor
Assembly: Crowdin.Api.dll
Syntax
public class StorageApiExecutor : IStorageApiExecutor
Constructors
|
Edit this page
View Source
StorageApiExecutor(ICrowdinApiClient)
Declaration
public StorageApiExecutor(ICrowdinApiClient apiClient)
Parameters
|
Edit this page
View Source
StorageApiExecutor(ICrowdinApiClient, IJsonParser)
Declaration
public StorageApiExecutor(ICrowdinApiClient apiClient, IJsonParser jsonParser)
Parameters
Methods
|
Edit this page
View Source
AddStorage(Stream, string)
Declaration
[PublicAPI]
public Task<StorageResource> AddStorage(Stream fileStream, string filename)
Parameters
Returns
|
Edit this page
View Source
DeleteStorage(long)
Declaration
[PublicAPI]
public Task DeleteStorage(long storageId)
Parameters
Type |
Name |
Description |
long |
storageId |
|
Returns
|
Edit this page
View Source
GetStorage(long)
Declaration
[PublicAPI]
public Task<StorageResource> GetStorage(long storageId)
Parameters
Type |
Name |
Description |
long |
storageId |
|
Returns
|
Edit this page
View Source
ListStorages(int, int)
Declaration
[PublicAPI]
public Task<ResponseList<StorageResource>> ListStorages(int limit = 25, int offset = 0)
Parameters
Type |
Name |
Description |
int |
limit |
|
int |
offset |
|
Returns
Implements