Advertisement
gsavix

doxygen_xml

Jan 22nd, 2013
378
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.58 KB | None | 0 0
  1. DOXYGEN and XML Commands
  2. ========================
  3.  
  4.  
  5. Doxygen supports most of the XML commands that are typically used in C# code comments.
  6. The XML tags are defined in Appendix E of the ECMA-334 standard, which defines the C# language.
  7. Unfortunately, the specification is not very precise and
  8. a number of the examples given are of poor quality.
  9.  
  10. Here is the list of tags supported by doxygen:
  11.  
  12. <c>
  13. Identifies inline text that should be rendered as a piece of code. Similar to using <tt>text</tt>.
  14.  
  15. <code>
  16. Set one or more lines of source code or program output.
  17. Note that this command behaves like \code ... \endcode for C# code,
  18. but it behaves like the HTML equivalent <code>...</code> for other languages.
  19.  
  20. <description>
  21. Part of a <list> command, describes an item.
  22.  
  23. <example>
  24. Marks a block of text as an example, ignored by doxygen.
  25.  
  26. <exception cref="member">
  27. Identifies the exception a method can throw.
  28.  
  29. <include>
  30. Can be used to import a piece of XML from an external file.
  31. Ignored by doxygen at the moment.
  32.  
  33. <inheritdoc>
  34. Can be used to insert the documentation of a member of a base class into the documentation
  35. of a member of a derived class that reimplements it.
  36.  
  37. <item>
  38. List item. Can only be used inside a <list> context.
  39.  
  40. <list type="type">
  41. Starts a list, supported types are bullet or number and table.
  42. A list consists of a number of <item> tags.
  43. A list of type table, is a two column table which can have a header.
  44.  
  45. <listheader>
  46. Starts the header of a list of type "table".
  47.  
  48. <para>
  49. Identifies a paragraph of text.
  50.  
  51. <param name="paramName">
  52. Marks a piece of text as the documentation for parameter "paramName". Similar to using \param.
  53.  
  54. <paramref name="paramName">
  55. Refers to a parameter with name "paramName". Similar to using \a.
  56.  
  57. <permission>
  58. Identifies the security accessibility of a member. Ignored by doxygen.
  59.  
  60. <remarks>
  61. Identifies the detailed description.
  62.  
  63. <returns>
  64. Marks a piece of text as the return value of a function or method. Similar to using \return.
  65.  
  66. <see cref="member">
  67. Refers to a member. Similar to \ref.
  68.  
  69. <seealso cref="member">
  70. Starts a "See also" section referring to "member". Similar to using \sa member.
  71.  
  72. <summary>
  73. Identifies the brief description. Similar to using \brief.
  74.  
  75. <term> Part of a <list> command.
  76.  
  77. <typeparam name="paramName">
  78. Marks a piece of text as the documentation for type parameter "paramName". Similar to using \param.
  79.  
  80. <typeparamref name="paramName">
  81. Refers to a parameter with name "paramName". Similar to using \a.
  82.  
  83. <value> Identifies a property. Ignored by doxygen.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement