//-----------------------------------------------------------------------
//
// Copyright (c) Outercurve Foundation. All rights reserved.
//
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.Yadis {
///
/// String constants for various content-type header values used in YADIS discovery.
///
internal static class ContentTypes {
///
/// The text/html content-type
///
public const string Html = "text/html";
///
/// The application/xhtml+xml content-type
///
public const string XHtml = "application/xhtml+xml";
///
/// The application/xrds+xml content-type
///
public const string Xrds = "application/xrds+xml";
///
/// The text/xml content type
///
public const string Xml = "text/xml";
}
}