|
Copyright © 2005-2008 MultiMedia Soft
Return to Table of contents
|
|
[Visual Basic]
Public Function LoadInternetStream (
nPlayerIndex as Int16,
strURL as String
) as enumErrorCodes
|
|
[C#]
public enumErrorCodes LoadInternetStream (
Int16 nPlayerIndex,
string strURL
);
|
|
[C++]
public: enumErrorCodes LoadInternetStream (
Int16 nPlayerIndex,
string strURL
);
|
|
Parameter
|
Description
|
|
|
|
|
[nPlayerIndex
|
Number representing the zero-based index of the player that will load the sound
|
|
strURL
|
String containing the URL of the stream to load. Accepted URLs begin with "http://", "ftp://" or "mms://".
Passing an empty string will cause to cancel any previous call to the LoadInternetStream method.
|
|
Value
|
Meaning
|
|
|
|
|
enumErrorCodes.NOERROR (0)
|
The song file has been loaded successfully.
|
|
Negative value
|
An error occurred: see the LastError property for further error details or for a list of the possible error values.
|