Animatroller.Framework.Expander.MidiInput2.Stop C# (CSharp) Method

Stop() public method

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