27 lines
547 B
C#
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;
|
|
}
|
|
}
|
|
}
|