SobekCM.Tools.Custom_Tracer.Clear C# (CSharp) Method

Clear() public method

Clears this trace route and resets the elapsed timer
This is generally called when creating static HTML pages through the Builder application, to prevent the trace object from getting astronomically large
public Clear ( ) : void
return void
        public void Clear()
        {
            if (traceBuilder.Length > 0)
                traceBuilder.Remove(0, traceBuilder.Length);
            elapsedTimer.Reset();
        }