Mp3Sharp.StreamedSound.Stop C# (CSharp) Method

Stop() public method

public Stop ( ) : void
return void
        public void Stop()
        {
            ERSB.Stop();
        }

Usage Example

Exemplo n.º 1
0
 private void btnStop_Click(object sender, System.EventArgs e)
 {
     if (null != ApplicationStreamedSound)
     {
         ApplicationStreamedSound.Stop();
     }
 }