Accord.DirectSound.WaveFileAudioSource.Stop C# (CSharp) Méthode

Stop() public méthode

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