SoundPlayer.Play Method

Definition

Plays the .wav file using a new thread, and loads the .wav file first if it has not been loaded.

public:
 void Play();
public void Play ();
member this.Play : unit -> unit
Public Sub Play ()

Exceptions

The elapsed time during loading exceeds the time, in milliseconds, specified by LoadTimeout.

The file specified by SoundLocation cannot be found.

The .wav header is corrupted; the file specified by SoundLocation is not a PCM .wav file.

Examples

The following code example demonstrates the use of the Play method to asynchronously play a .wav file. This code example is part of a larger example provided for the SoundPlayer class.

ReportStatus( "Playing .wav file asynchronously." );
player->Play();
ReportStatus("Playing .wav file asynchronously.");
player.Play();
ReportStatus("Playing .wav file asynchronously.")
player.Play()

Remarks

The Play method plays the sound using a new thread. If you call Play before the .wav file has been loaded into memory, the .wav file will be loaded before playback starts. You can use the LoadAsync or Load method to load the .wav file to memory in advance. After a .wav file is successfully loaded from a Stream or URL, future calls to playback methods for the SoundPlayer will not need to reload the .wav file until the path for the sound changes.

If the .wav file has not been specified or it fails to load, the Play method will play the default beep sound.

Applies to

See also