TagsReader.ID3V2_MusicCdIdentifierFrameGet method |
|
Remarks
Obtains a copy in memory of the music CD identifier frame (MCDI) of the ID3V2 tag.
For further details about methods related to tags reading refer to the TagsReaderMan class.
For details about the reading of tags see the How to read TAG information in sound files tutorial.
Syntax
[Visual Basic] Public Function ID3V2_MusicCdIdentifierFrameGet ( pBuffer() as Byte, nBufferLength as Int32 ) as enumErrorCodes |
[C#] public string ID3V2_MusicCdIdentifierFrameGet ( byte[] pBuffer, Int32 nBufferLength ); |
[C++] public: string ID3V2_MusicCdIdentifierFrameGet ( unsigned char __gc[] pBuffer, Int32 nBufferLength ); |
Parameter |
Description |
|
|
pBuffer |
Output buffer that, on return from the method call, will contain the CD identifier data |
nBufferLength |
Length of the buffer expressed in bytes. You can know the size in bytes of the buffer needed to store the CD identifier data through the TagsReader.ID3V2_MusicCdIdentifierFrameSizeGet method. |
Return value
Value |
Meaning |
|
|
Negative value |
An error occurred (see the LastError property for further error details) |
enumErrorCodes.NOERROR (0) |
The method call was successful. |