Method | Description | |
---|---|---|
DeleteFile ( string hash ) : DeleteFileResult |
Attempts to delete the specified files API Doc Url: https://github.com/MediaCrush/MediaCrush/blob/master/docs/api.md#apihashexists |
|
DeleteFileAsync ( string hash ) : Task |
Attempts to delete the specified files API Doc Url: https://github.com/MediaCrush/MediaCrush/blob/master/docs/api.md#apihashexists |
|
GetFileExists ( string hash ) : bool |
Returns API Doc Url: https://github.com/MediaCrush/MediaCrush/blob/master/docs/api.md#apihashexists |
|
GetFileExistsAsync ( string hash ) : Task |
Returns API Doc Url: https://github.com/MediaCrush/MediaCrush/blob/master/docs/api.md#apihashexists |
|
GetFileInfo ( string hash ) : object |
Gets information about the file whose hash is specified. API Doc Url: https://github.com/MediaCrush/MediaCrush/blob/master/docs/api.md#apihash |
|
GetFileInfoAsync ( string hash ) : Task |
Gets information about the file whose hash is specified. API Doc Url: https://github.com/MediaCrush/MediaCrush/blob/master/docs/api.md#apihash |
|
GetFileInfos ( ) : object[] |
Gets information about the files whose hashes are specified. API Doc Url: https://github.com/MediaCrush/MediaCrush/blob/master/docs/api.md#apiinfolisthash |
|
GetFileInfosAsync ( ) : Task |
Gets information about the files whose hashes are specified. API Doc Url: https://github.com/MediaCrush/MediaCrush/blob/master/docs/api.md#apiinfolisthash |
|
GetFileStatus ( string hash ) : GetFileStatusResult |
Attempts to get the status of the specified file API Doc Url: https://github.com/MediaCrush/MediaCrush/blob/master/docs/api.md#apihashstatus |
|
GetFileStatusAsync ( string hash ) : Task |
Attempts to get the status of the specified file API Doc Url: https://github.com/MediaCrush/MediaCrush/blob/master/docs/api.md#apihashstatus |
|
UploadFile ( object file ) : FileUploadResult |
Upload the specified file to the MediaCrush (or other) server. API Doc Url: https://github.com/MediaCrush/MediaCrush/blob/master/docs/api.md#apiuploadfile |
|
UploadFileAsync ( object file ) : Task |
Upload the specified file to the MediaCrush (or other) server. API Doc Url: https://github.com/MediaCrush/MediaCrush/blob/master/docs/api.md#apiuploadfile |
|
UploadUrl ( string url ) : UrlUploadResult |
Upload the specified file from url to the MediaCrush (or other) server. API Doc Url: https://github.com/MediaCrush/MediaCrush/blob/master/docs/api.md#apiuploadurl |
|
UploadUrlAsync ( string url ) : Task |
Upload the specified file from url to the MediaCrush (or other) server. API Doc Url: https://github.com/MediaCrush/MediaCrush/blob/master/docs/api.md#apiuploadurl |
public static DeleteFile ( string hash ) : DeleteFileResult | ||
hash | string | The hash of the file to delete |
return | DeleteFileResult |
public static DeleteFileAsync ( string hash ) : Task |
||
hash | string | The hash of the file to delete |
return | Task |
public static GetFileExists ( string hash ) : bool | ||
hash | string | The file hash to check |
return | bool |
public static GetFileExistsAsync ( string hash ) : Task |
||
hash | string | The file hash to check |
return | Task |
public static GetFileInfo ( string hash ) : object | ||
hash | string | The hash of the file to get. |
return | object |
public static GetFileInfoAsync ( string hash ) : Task | ||
hash | string | The hash of the file to get. |
return | Task |
public static GetFileStatus ( string hash ) : GetFileStatusResult | ||
hash | string | The hash of the file to get the status of. |
return | GetFileStatusResult |
public static GetFileStatusAsync ( string hash ) : Task |
||
hash | string | The hash of the file to get the status of. |
return | Task |
public static UploadFile ( object file ) : FileUploadResult | ||
file | object | The file to upload |
return | FileUploadResult |
public static UploadFileAsync ( object file ) : Task |
||
file | object | The file to upload |
return | Task |
public static UploadUrl ( string url ) : UrlUploadResult | ||
url | string | The url to upload |
return | UrlUploadResult |
public static UploadUrlAsync ( string url ) : Task |
||
url | string | The url to upload |
return | Task |