SoundPlayer::SoundLocation Property

 

Gets or sets the file path or URL of the .wav file to load.

Namespace:   System.Media
Assembly:  System (in System.dll)

public:
property String^ SoundLocation {
	String^ get();
	void set(String^ value);
}

Property Value

Type: System::String^

The file path or URL from which to load a .wav file, or String::Empty if no file path is present. The default is String::Empty.

This property is set to String::Empty when the Stream property is set to a Stream.

The following code example demonstrates the use of the SoundLocation property to assign the .wav file source to an instance of the SoundPlayer class. This code example is part of a larger example provided for the SoundPlayer class.

try
{

   // Assign the selected file's path to 
   // the SoundPlayer object.  
   player->SoundLocation = filepathTextbox->Text;

   // Load the .wav file.
   player->Load();
}
catch ( Exception^ ex ) 
{
   ReportStatus( ex->Message );
}


FileIOPermission

for finding files. Associated enumeration: FileIOPermissionAccess::PathDiscovery

.NET Framework
Available since 2.0
Return to top
Show: