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.

ParserToken.cs 668B

    using System; namespace VisualTraceRoute.Text { /// <summary> /// Parser token attribute class. /// </summary> [AttributeUsage(AttributeTargets.Property, AllowMultiple = true, Inherited = false)] public class ParserToken : Attribute { /// <summary> /// Gets or sets the token string. /// </summary> public string Token { get; set; } /// <summary> /// Initializes a new instance of the ParserToken class. /// </summary> public ParserToken() { this.Token = string.Empty; } } }