StyleCop clean.
[dotnetoauth.git] / src / DotNetOpenAuth / Yadis / ContentTypes.cs
blob30745eedc31d63a478e6552d56d708977b5878bf
1 //-----------------------------------------------------------------------
2 // <copyright file="ContentTypes.cs" company="Andrew Arnott">
3 // Copyright (c) Andrew Arnott. All rights reserved.
4 // </copyright>
5 //-----------------------------------------------------------------------
7 namespace DotNetOpenAuth.Yadis {
8 /// <summary>
9 /// String constants for various content-type header values used in YADIS discovery.
10 /// </summary>
11 internal static class ContentTypes {
12 /// <summary>
13 /// The text/html content-type
14 /// </summary>
15 public const string Html = "text/html";
17 /// <summary>
18 /// The application/xhtml+xml content-type
19 /// </summary>
20 public const string XHtml = "application/xhtml+xml";
22 /// <summary>
23 /// The application/xrds+xml content-type
24 /// </summary>
25 public const string Xrds = "application/xrds+xml";
27 /// <summary>
28 /// The text/xml content type
29 /// </summary>
30 public const string Xml = "text/xml";