Tags.cs
上传用户:hbhltzc
上传日期:2022-06-04
资源大小:1925k
文件大小:2k
源码类别:

xml/soap/webservice

开发平台:

Visual C++

  1. //  ---------------------------------------------------------------------------
  2. // <copyright company="Microsoft Corporation" file="Tags.cs">
  3. //     Copyright (c) Microsoft Corporation 2005
  4. // </copyright>
  5. // <project>
  6. //     XmlDiffView
  7. // </project>
  8. // <summary>
  9. //     Constants for a variety of opening and closing tags for 
  10. //     xml nodes, and other xml data types.
  11. // </summary>
  12. // <history>
  13. //      [barryw] 24JAN05 Created
  14. // </history>
  15. //  ---------------------------------------------------------------------------
  16. namespace Microsoft.XmlDiffPatch
  17. {
  18.     #region Using directives
  19.     using System;
  20.     #endregion
  21.     #region Xml Tags Class
  22.     /// -----------------------------------------------------------------------------
  23.     /// <summary>
  24.     /// Class to contain constants for all text Xml-like and other
  25.     /// tags used for formatting the output as text.
  26.     /// </summary>
  27.     /// <history>
  28.     ///  [barryw] 2/24/2005 Created
  29.     /// </history>
  30.     /// -----------------------------------------------------------------------------
  31.     internal class Tags
  32.     {
  33.         #region Constants section
  34.         public const string XmlOpenBegin = "<";
  35.         public const string XmlOpenEnd = ">";
  36.         public const string XmlOpenEndTerse = "/>";
  37.         public const string XmlCloseBegin = "</";
  38.         public const string XmlCloseEnd = ">";
  39.         public const string XmlDeclarationBegin = "<?xml ";
  40.         public const string XmlDeclarationEnd = " ?>";
  41.         public const string XmlDocumentTypeBegin = "<!DOCTYPE ";
  42.         public const string XmlDocumentTypeEnd = ">";
  43.         public const string XmlCharacterDataBegin = "<![CDATA[";
  44.         public const string XmlCharacterDataEnd = "]]>";
  45.         public const string XmlCommentBegin = "<comment>";
  46.         public const string XmlCommentEnd = "</comment>";
  47.         public const string XmlCommentOldStyleBegin = "<!--";
  48.         public const string XmlCommentOldStyleEnd = "-->";
  49.         public const string XmlErrorHandlingBegin = "<?";
  50.         public const string XmlErrorHandlingEnd = " ?>";
  51.         public const string PrefixColon = ":";
  52.         public const string DtdPublic = "PUBLIC ";
  53.         public const string DtdSystem = "SYSTEM ";
  54.         #endregion
  55.         #region  Constructors section
  56.         private Tags()
  57.         {
  58.         }
  59.         #endregion
  60.     }
  61.     #endregion
  62. }