A collaboration between Ed Rantanen and myself to provide basic visualization of a trace route in a flexible manner. This should allow the swapping of different graphic libraries such as Graphviz, Flot, etc.

BlockType.cs 443B

     namespace VisualTraceRoute.Text { /// <summary> /// Text block type. /// </summary> public enum BlockType { /// <summary> /// Plain text block. /// </summary> Plain = 0, /// <summary> /// Collection of routes. /// </summary> Route, /// <summary> /// Collection of hops. /// </summary> Hop } }