Accord.DirectSound.WaveFileAudioSource.Stop C# (CSharp) Method

Stop() public method

Stops the source.
public Stop ( ) : void
return void
        public void Stop()
        {
            if (this.IsRunning)
            {
                thread.Abort();
                WaitForStop();
            }
        }