Files
HawkeyeVision/framework/Inspectron.HawkEye/RTSP/Sdp/EncriptionKey.cs
2025-08-19 12:45:50 +02:00

23 lines
465 B
C#

using System;
using System.Diagnostics.Contracts;
namespace Inspectron.HawkEye.RTSP.Sdp
{
public class EncriptionKey
{
public EncriptionKey(string p)
{
}
public static EncriptionKey ParseInvariant(string value)
{
if (value == null)
throw new ArgumentNullException("value");
Contract.EndContractBlock();
throw new NotImplementedException();
}
}
}