Copyright © 2005-2008 MultiMedia Soft 
Return to Table of contents  
 
StreamLoaded event 
 
Remarks 
 
Occurs when the player has buffered enough data from an Internet stream in order to start playback. 
 
For further details about Internet streams support see the How to play Internet streams section. 
 
 
Syntax 
 
[Visual Basic] 
Public Event StreamLoaded As StreamLoadedEventHandler
 
[C#] 
public event StreamLoadedEventHandler StreamLoaded;
 
[C++] 
public: __event StreamLoadedEventHandler* StreamLoaded;
 
 
Event Data 
 
The event handler receives an argument of type StreamLoadedEventArgs 
 
 
StreamLoadedEventArgs members
Description
 
 
nPlayerIndex
Number representing the zero-based index of the player that fired the event
nResult
The load result. 
Supported values are the following:  
Mnemonic value
Value
Meaning
STREAM_LOAD_FAIL
0
The stream loading failed
STREAM_LOAD_OK
1
The stream loading was successful
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Copyright © 2005-2008 MultiMedia Soft 
Return to Table of contents