Return the albums list for the user

Namespace:  IpernityNET.IpernityObjects
Assembly:  IpernityNET (in IpernityNET.dll) Version: 0.3.1.0 (0.3.1.0)

Syntax

C#
public IEnumerable<Album> AlbumGetList(
	Thumbsize size,
	int page,
	int perPage
)
Visual Basic (Declaration)
Public Function AlbumGetList ( _
	size As Thumbsize, _
	page As Integer, _
	perPage As Integer _
) As IEnumerable(Of Album)
Visual C++
public:
IEnumerable<Album^>^ AlbumGetList(
	Thumbsize size, 
	int page, 
	int perPage
)

Parameters

size
Type: IpernityNET..::.Thumbsize
Choose your prefered size for the cover: 75, 100, 240, 500 or 560.
page
Type: System..::.Int32
The page of results to return.
perPage
Type: System..::.Int32
The number of records to return on each page. (Default is 100, maximum is 100)

Return Value

A list of Album

Remarks

This method encapsulates album.getList This method does not require any particular permission.

Exceptions

ExceptionCondition
IpernityNET..::.IpernityExceptionThrowed when Ipernity returned an error
IpernityNET.IpernityObjects..::.ObjectNotConfiguredExceptionThrowed when an Ipernity object has not been configured. Use the method ConfigureIpernityObject(IpernityObject) to configure the object and allow it to interact with Ipernity

See Also