23 lines
465 B
C#
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();
|
|
}
|
|
}
|
|
}
|