Server.Tracker.Stop C# (CSharp) Method

Stop() public method

public Stop ( ) : void
return void
        public void Stop()
        {
            if (this.watch != null) {
                this.points.Add("end", this.watch.ElapsedTicks);
                this.watch.Stop();
                this.watch = null;
            }
        }