Novell.Directory.Ldap.Message.stopTimer C# (CSharp) Method

stopTimer() private method

stops the timeout timer from running
private stopTimer ( ) : void
return void
        internal virtual void stopTimer()
        {
            // If timer thread started, stop it
            if (timer != null)
            {
                timer.Interrupt();
            }
            return ;
        }