BASS.NET API for the Un4seen BASS Audio Library

BASS_TAG_FLAC_CUEGetTag Method

BASS.NET API for the Un4seen BASS Audio Library
Gets a BASS_TAG_FLAC_CUE tag from a given channel handle.

Namespace:  Un4seen.Bass
Assembly:  Bass.Net (in Bass.Net.dll) Version: 2.4.17.5
Syntax

public static BASS_TAG_FLAC_CUE GetTag(
	int handle
)

Parameters

handle
Type: SystemInt32
The channel handle...a HMUSIC or HSTREAM.

Return Value

Type: BASS_TAG_FLAC_CUE
Returns a BASS_TAG_FLAC_CUE instance if the BASS_TAG_FLAC_CUE could be retrieved successfully - else is returned.
Remarks

This method internally calles BASS_ChannelGetTags(Int32, BASSTag) to retrieve the BASS_TAG_FLAC_CUE tag.
Examples

Read the FLAC cuesheet tag:
BASS_TAG_FLAC_CUE cuesheet = BASS_TAG_FLAC_CUE.GetTag(stream);
See Also

Reference