Свойство | Type | Description | |
---|---|---|---|
ImageEndpoint | System |
Méthode | Description | |
---|---|---|
DeleteImageAsync ( string imageId ) : Task |
Deletes an image. For an anonymous image, {id} must be the image's deletehash. If the image belongs to your account then passing the ID of the image is sufficient.
|
|
FavoriteImageAsync ( string imageId ) : Task |
Favorite an image with the given ID. OAuth authentication required.
|
|
GetImageAsync ( string imageId ) : Task |
Get information about an image.
|
|
ImageEndpoint ( IApiClient apiClient ) : System |
Initializes a new instance of the ImageEndpoint class.
|
|
UpdateImageAsync ( string imageId, string title = null, string description = null ) : Task |
Updates the title or description of an image. You can only update an image you own and is associated with your account. For an anonymous image, {id} must be the image's deletehash.
|
|
UploadImageBinaryAsync ( byte image, string albumId = null, string title = null, string description = null ) : Task |
Upload a new image using a binary file.
|
|
UploadImageStreamAsync ( Stream image, string albumId = null, string title = null, string description = null ) : Task |
Upload a new image using a stream.
|
|
UploadImageUrlAsync ( string image, string albumId = null, string title = null, string description = null ) : Task |
Upload a new image using a URL.
|
Méthode | Description | |
---|---|---|
ImageEndpoint ( IApiClient apiClient, |
Initializes a new instance of the ImageEndpoint class.
|
public DeleteImageAsync ( string imageId ) : Task |
||
imageId | string | The image id. |
Résultat | Task |
public FavoriteImageAsync ( string imageId ) : Task |
||
imageId | string | The image id. |
Résultat | Task |
public GetImageAsync ( string imageId ) : Task |
||
imageId | string | The image id. |
Résultat | Task |
public ImageEndpoint ( IApiClient apiClient ) : System | ||
apiClient | IApiClient | The type of client that will be used for authentication. |
Résultat | System |
public UpdateImageAsync ( string imageId, string title = null, string description = null ) : Task |
||
imageId | string | The image id. |
title | string | The title of the image. |
description | string | The description of the image. |
Résultat | Task |
public UploadImageBinaryAsync ( byte image, string albumId = null, string title = null, string description = null ) : Task |
||
image | byte | A binary file. |
albumId | string | /// The id of the album you want to add the image to. For anonymous albums, {albumId} should be the /// deletehash that is returned at creation. /// |
title | string | The title of the image. |
description | string | The description of the image. |
Résultat | Task |
public UploadImageStreamAsync ( Stream image, string albumId = null, string title = null, string description = null ) : Task |
||
image | Stream | A stream. |
albumId | string | /// The id of the album you want to add the image to. For anonymous albums, {albumId} should be the /// deletehash that is returned at creation. /// |
title | string | The title of the image. |
description | string | The description of the image. |
Résultat | Task |
public UploadImageUrlAsync ( string image, string albumId = null, string title = null, string description = null ) : Task |
||
image | string | The URL for the image. |
albumId | string | /// The id of the album you want to add the image to. For anonymous albums, {albumId} should be the /// deletehash that is returned at creation. /// |
title | string | The title of the image. |
description | string | The description of the image. |
Résultat | Task |