TextSyndicationContent.xml 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Type Name="TextSyndicationContent" FullName="System.ServiceModel.Syndication.TextSyndicationContent">
  3. <TypeSignature Language="C#" Value="public class TextSyndicationContent : System.ServiceModel.Syndication.SyndicationContent" />
  4. <TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit TextSyndicationContent extends System.ServiceModel.Syndication.SyndicationContent" />
  5. <AssemblyInfo>
  6. <AssemblyName>System.ServiceModel</AssemblyName>
  7. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  8. </AssemblyInfo>
  9. <Base>
  10. <BaseTypeName>System.ServiceModel.Syndication.SyndicationContent</BaseTypeName>
  11. </Base>
  12. <Interfaces />
  13. <Docs>
  14. <remarks>
  15. <attribution license="cc4" from="Microsoft" modified="false" />
  16. <para>Text content is HTML (with escaped markup), XHTML (valid XML, and is not escaped), or plain text.</para>
  17. </remarks>
  18. <summary>
  19. <attribution license="cc4" from="Microsoft" modified="false" />
  20. <para>Represents any <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> content intended to be displayed to an end user.</para>
  21. </summary>
  22. </Docs>
  23. <Members>
  24. <Member MemberName=".ctor">
  25. <MemberSignature Language="C#" Value="protected TextSyndicationContent (System.ServiceModel.Syndication.TextSyndicationContent source);" />
  26. <MemberSignature Language="ILAsm" Value=".method familyhidebysig specialname rtspecialname instance void .ctor(class System.ServiceModel.Syndication.TextSyndicationContent source) cil managed" />
  27. <MemberType>Constructor</MemberType>
  28. <AssemblyInfo>
  29. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  30. </AssemblyInfo>
  31. <Parameters>
  32. <Parameter Name="source" Type="System.ServiceModel.Syndication.TextSyndicationContent" />
  33. </Parameters>
  34. <Docs>
  35. <remarks>To be added.</remarks>
  36. <summary>
  37. <attribution license="cc4" from="Microsoft" modified="false" />
  38. <para>Initializes a new instance of the <see cref="T:System.ServiceModel.Syndication.TextSyndicationContent" /> with the specified <see cref="T:System.ServiceModel.Syndication.TextSyndicationContent" /> instance.</para>
  39. </summary>
  40. <param name="source">
  41. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ServiceModel.Syndication.TextSyndicationContent" /> instance.</param>
  42. </Docs>
  43. </Member>
  44. <Member MemberName=".ctor">
  45. <MemberSignature Language="C#" Value="public TextSyndicationContent (string text);" />
  46. <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(string text) cil managed" />
  47. <MemberType>Constructor</MemberType>
  48. <AssemblyInfo>
  49. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  50. </AssemblyInfo>
  51. <Parameters>
  52. <Parameter Name="text" Type="System.String" />
  53. </Parameters>
  54. <Docs>
  55. <remarks>To be added.</remarks>
  56. <summary>
  57. <attribution license="cc4" from="Microsoft" modified="false" />
  58. <para>Initializes a new instance of the <see cref="T:System.ServiceModel.Syndication.TextSyndicationContent" /> with the specified text. </para>
  59. </summary>
  60. <param name="text">
  61. <attribution license="cc4" from="Microsoft" modified="false" />The text of the content.</param>
  62. </Docs>
  63. </Member>
  64. <Member MemberName=".ctor">
  65. <MemberSignature Language="C#" Value="public TextSyndicationContent (string text, System.ServiceModel.Syndication.TextSyndicationContentKind textKind);" />
  66. <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(string text, valuetype System.ServiceModel.Syndication.TextSyndicationContentKind textKind) cil managed" />
  67. <MemberType>Constructor</MemberType>
  68. <AssemblyInfo>
  69. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  70. </AssemblyInfo>
  71. <Parameters>
  72. <Parameter Name="text" Type="System.String" />
  73. <Parameter Name="textKind" Type="System.ServiceModel.Syndication.TextSyndicationContentKind" />
  74. </Parameters>
  75. <Docs>
  76. <remarks>
  77. <attribution license="cc4" from="Microsoft" modified="false" />
  78. <para>The <see cref="T:System.ServiceModel.Syndication.TextSyndicationContentKind" /> parameter may be set to one of the following values:</para>
  79. <list type="bullet">
  80. <item>
  81. <para>
  82. <see cref="F:System.ServiceModel.Syndication.TextSyndicationContentKind.Plaintext" />
  83. </para>
  84. </item>
  85. <item>
  86. <para>
  87. <see cref="F:System.ServiceModel.Syndication.TextSyndicationContentKind.Html" />
  88. </para>
  89. </item>
  90. <item>
  91. <para>
  92. <see cref="F:System.ServiceModel.Syndication.TextSyndicationContentKind.XHtml" />
  93. </para>
  94. </item>
  95. </list>
  96. </remarks>
  97. <summary>
  98. <attribution license="cc4" from="Microsoft" modified="false" />
  99. <para>Initializes a new instance of the <see cref="T:System.ServiceModel.Syndication.TextSyndicationContent" /> with the specified text and <see cref="T:System.ServiceModel.Syndication.TextSyndicationContentKind" />.</para>
  100. </summary>
  101. <param name="text">
  102. <attribution license="cc4" from="Microsoft" modified="false" />The text of the content.</param>
  103. <param name="textKind">
  104. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ServiceModel.Syndication.TextSyndicationContentKind" /> that describes the content.</param>
  105. </Docs>
  106. </Member>
  107. <Member MemberName="Clone">
  108. <MemberSignature Language="C#" Value="public override System.ServiceModel.Syndication.SyndicationContent Clone ();" />
  109. <MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance class System.ServiceModel.Syndication.SyndicationContent Clone() cil managed" />
  110. <MemberType>Method</MemberType>
  111. <AssemblyInfo>
  112. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  113. </AssemblyInfo>
  114. <ReturnValue>
  115. <ReturnType>System.ServiceModel.Syndication.SyndicationContent</ReturnType>
  116. </ReturnValue>
  117. <Parameters />
  118. <Docs>
  119. <remarks>To be added.</remarks>
  120. <summary>
  121. <attribution license="cc4" from="Microsoft" modified="false" />
  122. <para>Creates a copy of the existing <see cref="T:System.ServiceModel.Syndication.SyndicationContent" /> instance.</para>
  123. </summary>
  124. <returns>
  125. <attribution license="cc4" from="Microsoft" modified="false" />
  126. <para>A new <see cref="T:System.ServiceModel.Syndication.SyndicationContent" /> instance.</para>
  127. </returns>
  128. </Docs>
  129. </Member>
  130. <Member MemberName="Text">
  131. <MemberSignature Language="C#" Value="public string Text { get; }" />
  132. <MemberSignature Language="ILAsm" Value=".property instance string Text" />
  133. <MemberType>Property</MemberType>
  134. <AssemblyInfo>
  135. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  136. </AssemblyInfo>
  137. <ReturnValue>
  138. <ReturnType>System.String</ReturnType>
  139. </ReturnValue>
  140. <Docs>
  141. <value>To be added.</value>
  142. <remarks>To be added.</remarks>
  143. <summary>
  144. <attribution license="cc4" from="Microsoft" modified="false" />
  145. <para>Gets the text of the <see cref="T:System.ServiceModel.Syndication.TextSyndicationContent" />.</para>
  146. </summary>
  147. </Docs>
  148. </Member>
  149. <Member MemberName="Type">
  150. <MemberSignature Language="C#" Value="public override string Type { get; }" />
  151. <MemberSignature Language="ILAsm" Value=".property instance string Type" />
  152. <MemberType>Property</MemberType>
  153. <AssemblyInfo>
  154. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  155. </AssemblyInfo>
  156. <ReturnValue>
  157. <ReturnType>System.String</ReturnType>
  158. </ReturnValue>
  159. <Docs>
  160. <value>To be added.</value>
  161. <remarks>
  162. <attribution license="cc4" from="Microsoft" modified="false" />
  163. <para>This property may have the following values:</para>
  164. <list type="bullet">
  165. <item>
  166. <para>"text" for plain text content.</para>
  167. </item>
  168. <item>
  169. <para>"html" for HTML content.</para>
  170. </item>
  171. <item>
  172. <para>"xhtml" for XHTML content.</para>
  173. </item>
  174. </list>
  175. </remarks>
  176. <summary>
  177. <attribution license="cc4" from="Microsoft" modified="false" />
  178. <para>Gets the content type of the <see cref="T:System.ServiceModel.Syndication.TextSyndicationContent" />.</para>
  179. </summary>
  180. </Docs>
  181. </Member>
  182. <Member MemberName="WriteContentsTo">
  183. <MemberSignature Language="C#" Value="protected override void WriteContentsTo (System.Xml.XmlWriter writer);" />
  184. <MemberSignature Language="ILAsm" Value=".method familyhidebysig virtual instance void WriteContentsTo(class System.Xml.XmlWriter writer) cil managed" />
  185. <MemberType>Method</MemberType>
  186. <AssemblyInfo>
  187. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  188. </AssemblyInfo>
  189. <ReturnValue>
  190. <ReturnType>System.Void</ReturnType>
  191. </ReturnValue>
  192. <Parameters>
  193. <Parameter Name="writer" Type="System.Xml.XmlWriter" />
  194. </Parameters>
  195. <Docs>
  196. <remarks>To be added.</remarks>
  197. <summary>
  198. <attribution license="cc4" from="Microsoft" modified="false" />
  199. <para>Writes the contents of the <see cref="T:System.ServiceModel.Syndication.TextSyndicationContent" /> to the specified <see cref="T:System.Xml.XmlWriter" />.</para>
  200. </summary>
  201. <param name="writer">
  202. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlWriter" /> to write to.</param>
  203. </Docs>
  204. </Member>
  205. </Members>
  206. </Type>