|
Copyright © 2006 - 2008 MultiMedia Soft
Return to Table of contents
|
|
[Visual Basic]
Public Function CdRequestAlbumInfo (
strArtist as string,
strAlbum as string,
strAmazonDeveloperCode as string
) as enumErrorCodes
|
|
[C#]
public enumErrorCodes CdRequestAlbumInfo (
string strArtist,
string strAlbum,
string strAmazonDeveloperCode
);
|
|
[C++]
public: enumErrorCodes CdRequestAlbumInfo (
string strArtist,
string strAlbum,
string strAmazonDeveloperCode
);
|
|
Parameter
|
Description
|
|
|
|
|
strArtist
|
String representing the artist name: if it shouldn't be complete the search session would try finding the best match.
|
|
strAlbum
|
String representing the album title: if it shouldn't be complete the search session would try finding the best match.
|
|
strAmazonDeveloperCode
|
String representing the Amazon developer code: this string is optional but it's strongly recommended that you obtain a developer code from Amazon; visit the Amazon Web Services site for creating your own account
|
|
Value
|
Meaning
|
|
|
|
|
Negative value
|
An error occurred. Check the LastError property value in order to see the last error.
|
|
enumErrorCodes.ERR_NOERROR (0)
|
The method call was successful.
|