using System; namespace Inspectron.HawkEye.RTSP { public static class RtspUtils { /// /// Registers the URI. /// public static void RegisterUri() { if (!UriParser.IsKnownScheme("rtsp")) UriParser.Register(new HttpStyleUriParser(), "rtsp", 554); } } }