20 lines
665 B
C#
20 lines
665 B
C#
namespace Inspectron.HawkEye.RTSP.Messages
|
|
{
|
|
/// <summary>
|
|
/// Class containing helper constant for general use headers.
|
|
/// </summary>
|
|
public static class RtspHeaderNames
|
|
{
|
|
public const string ContentBase = "Content-Base";
|
|
public const string ContentEncoding = "Content-Encoding";
|
|
public const string ContentType = "Content-Type";
|
|
|
|
public const string Public = "Public";
|
|
public const string Session = "Session";
|
|
public const string Transport = "Transport";
|
|
|
|
public const string WWWAuthenticate = "WWW-Authenticate";
|
|
public const string Authorization = "Authorization";
|
|
}
|
|
}
|