17 lines
364 B
C#
17 lines
364 B
C#
using System;
|
|
|
|
namespace Inspectron.HawkEye.RTSP
|
|
{
|
|
public static class RtspUtils
|
|
{
|
|
/// <summary>
|
|
/// Registers the URI.
|
|
/// </summary>
|
|
public static void RegisterUri()
|
|
{
|
|
if (!UriParser.IsKnownScheme("rtsp"))
|
|
UriParser.Register(new HttpStyleUriParser(), "rtsp", 554);
|
|
}
|
|
}
|
|
}
|