Remarks
Occurs when the CDDB server returns the CD album information requested through a previous call to the CddbRequestAlbumInfo method.
After receiving this event it will be possible:
See the How to get CD album information from a CDDB server tutorial for further details.
For further details about synchronization through Events see the How to synchronize the container application through events tutorial.
Syntax
[Visual Basic]
Public Event CddbAlbumInfoAvailable As CddbInfoEventHandler
|
|
[C#]
public event CddbInfoEventHandler CddbAlbumInfoAvailable;
|
|
[C++]
public: __event CddbInfoEventHandler CddbAlbumInfoAvailable;
|
|
Event Data
The event handler receives an argument of type CddbInfoEventArgs having the following parameters:
Parameters
|
Description
|
|
|
nCdDriveIndex
|
Number representing the zero-based index of the CD drive that fired the event.
The total number of available CD drives can be obtained using the GetCdDrivesCount method.
|
bSuccess
|
Boolean value that specifies if the CDDB information was retrieved successfully.
Supported values are the following:
Mnemonic Value
|
Meaning
|
false
|
The request failed
|
true
|
The request succeeded and CDDB information is available
|
|
|