Remarks
Verifies if the loaded sound comes from an Internet stream or from a local file.
Syntax
[Visual Basic]
Public Function IsFromInternet (
nPlayerIndex as Int16
) as Boolean
|
|
[C#]
public bool IsFromInternet (
Int16 nPlayerIndex
);
|
|
[C++]
public: bool IsFromInternet (
Int16 nPlayerIndex
);
|
|
Parameter
|
Description
|
|
|
nPlayerIndex
|
Number representing the zero-based index of the involved player
|
Return value
Value
|
Meaning
|
|
|
false
|
The loaded song comes from a local file
|
true
|
The loaded sound comes from an Internet stream
|
|