Remarks
Occurs when a playlist Internet stream item has been loaded.
For further details about synchronization through Events see the How to synchronize the container application through events tutorial.
Syntax
[Visual Basic]
Public Event PlayListStreamLoaded As SoundLoadedEventHandler
|
|
[C#]
public event SoundLoadedEventHandler PlayListStreamLoaded;
|
|
[C++]
public: __event SoundLoadedEventHandler* PlayListStreamLoaded;
|
|
Event Data
The event handler receives an argument of type SoundLoadedEventArgs having the following parameters:
Parameters
|
Description
|
|
|
nPlayerIndex
|
Number representing the zero-based index of the player that fired the event
|
nItemIndex
|
The zero based-index of the loaded item: in case of failure in loading the stream taken from the playlist this parameter would be set to -1
|
|