Méthode | Description | |
---|---|---|
CreateAlbum ( string title, string description = null, string sharingStatus = null, string sharingPassword = null ) : Task |
Creates a new album.
|
|
DeleteAlbum ( int albumId ) : Task
|
Deletes a album.
|
|
GetAlbum ( string albumId ) : Task |
Gets data for a single album.
|
|
GetAlbumImages ( string albumId, int start, int limit = 25, string order = "upload" ) : Task |
Returns the images from an album.
|
|
GetAlbums ( int start, int limit = 25, bool withInbox = true, bool withInboxFilter = false, bool withTrash = true, bool withAlbum = true, bool withSharedAlbum = false ) : Task |
Get the albums from a user.
|
|
SetAlbumData ( int albumId, string title = null, string description = null, int coverImageId = null ) : Task
|
Updates album information.
|
Méthode | Description | |
---|---|---|
Album ( IRestClient client ) : System |
public CreateAlbum ( string title, string description = null, string sharingStatus = null, string sharingPassword = null ) : Task |
||
title | string | The title for the album. |
description | string | The description for the album. |
sharingStatus | string | The sharing status for the album. |
sharingPassword | string | A password for the album used when shared. |
Résultat | Task |
public DeleteAlbum ( int albumId ) : Task
|
||
albumId | int | The album for the to be deleted album. |
Résultat | Task
|
public GetAlbum ( string albumId ) : Task |
||
albumId | string | The albumId of the album. |
Résultat | Task |
public GetAlbumImages ( string albumId, int start, int limit = 25, string order = "upload" ) : Task |
||
albumId | string | The id of the album. |
start | int | Start position of images. |
limit | int | Result limit. |
order | string | Order of the result. |
Résultat | Task |
public GetAlbums ( int start, int limit = 25, bool withInbox = true, bool withInboxFilter = false, bool withTrash = true, bool withAlbum = true, bool withSharedAlbum = false ) : Task |
||
start | int | Start position. |
limit | int | Result limit. |
withInbox | bool | Include Inbox. |
withInboxFilter | bool | Include Inbox Filter. |
withTrash | bool | Include Trash. |
withAlbum | bool | Include Albums. |
withSharedAlbum | bool | Include shared albums. |
Résultat | Task |
public SetAlbumData ( int albumId, string title = null, string description = null, int coverImageId = null ) : Task
|
||
albumId | int | The id of the album. |
title | string | The new title. |
description | string | The new description. |
coverImageId | int | The new cover image. |
Résultat | Task
|