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

27 lines
547 B
C#

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