SampleApp.MainForm.source_AudioSourceError C# (CSharp) 메소드

source_AudioSourceError() 개인적인 메소드

This callback will be called when there is some error with the audio source. It can be used to route exceptions so they don't compromise the audio processing pipeline.
private source_AudioSourceError ( object sender, AudioSourceErrorEventArgs e ) : void
sender object
e AudioSourceErrorEventArgs
리턴 void
        void source_AudioSourceError(object sender, AudioSourceErrorEventArgs e)
        {
            throw new Exception(e.Description);
        }
MainForm