Remarks
Occurs after the player has tried to load an Internet stream taken from a playlist stored inside a web server.
For further details about Internet streams support see the How to play Internet streams section.
For further details about synchronization through Events see the How to synchronize the container application through events tutorial.
Syntax
[Visual Basic]
Public Event StreamLoadedFromInetPlaylist As StreamLoadedFromInetPlsEventHandler
|
|
[C#]
public event StreamLoadedFromInetPlsEventHandler StreamLoadedFromInetPlaylist;
|
|
[C++]
public: __event StreamLoadedFromInetPlsEventHandler* StreamLoadedFromInetPlaylist;
|
|
Event Data
The event handler receives an argument of type StreamLoadedFromInetPlsEventArgs having the following parameters:
Parameters
|
Description
|
|
|
nPlayerIndex
|
Number representing the zero-based index of the player that fired the event
|
bSuccess
|
The stream loading result.
Supported values are the following:
Mnemonic value
|
Meaning
|
false
|
The stream loading failed
|
true
|
The stream loading was successful. In this situation also the StreamLoaded event is fired
|
|
strItemURL
|
String containing the URL of the Internet stream
|
|