using System; namespace SharpVectors.Dom.Svg { /// /// Arguments when URI is trying to be resolved while loading schema /// public sealed class SvgResolveUriEventArgs : EventArgs { private string _uri; public SvgResolveUriEventArgs() { } public SvgResolveUriEventArgs(string uri) { } /// /// Gets or sets the URI (for example: 'http://www.w3.org/2000/svg'). /// This value may have already been initialized, it's up to the application to check if it wants to override the resolution /// /// The URI. public string Uri { get { return _uri; } set { _uri = value; } } } }