Animatroller.Framework.Expander.MidiInput2.Stop C# (CSharp) 메소드

Stop() 공개 메소드

public Stop ( ) : void
리턴 void
        public void Stop()
        {
            if (this.inputDevice != null)
            {
                try
                {
                    this.inputDevice.StopRecording();
                    this.inputDevice.Close();
                }
                catch
                {
                }
            }
        }