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