SyndicationItemFormatter.xml 70 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Type Name="SyndicationItemFormatter" FullName="System.ServiceModel.Syndication.SyndicationItemFormatter">
  3. <TypeSignature Language="C#" Value="public abstract class SyndicationItemFormatter" />
  4. <TypeSignature Language="ILAsm" Value=".class public auto ansi abstract beforefieldinit SyndicationItemFormatter extends System.Object" />
  5. <AssemblyInfo>
  6. <AssemblyName>System.ServiceModel</AssemblyName>
  7. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  8. </AssemblyInfo>
  9. <Base>
  10. <BaseTypeName>System.Object</BaseTypeName>
  11. </Base>
  12. <Interfaces />
  13. <Attributes>
  14. <Attribute>
  15. <AttributeName>System.Runtime.Serialization.DataContract</AttributeName>
  16. </Attribute>
  17. </Attributes>
  18. <Docs>
  19. <remarks>
  20. <attribution license="cc4" from="Microsoft" modified="false" />
  21. <para>This class is abstract and cannot be instantiated directly.</para>
  22. </remarks>
  23. <summary>
  24. <attribution license="cc4" from="Microsoft" modified="false" />
  25. <para>An abstract class used as a base class for other formatters, (for example, <see cref="T:System.ServiceModel.Syndication.Atom10ItemFormatter" />).</para>
  26. </summary>
  27. </Docs>
  28. <Members>
  29. <Member MemberName=".ctor">
  30. <MemberSignature Language="C#" Value="protected SyndicationItemFormatter ();" />
  31. <MemberSignature Language="ILAsm" Value=".method familyhidebysig specialname rtspecialname instance void .ctor() cil managed" />
  32. <MemberType>Constructor</MemberType>
  33. <AssemblyInfo>
  34. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  35. </AssemblyInfo>
  36. <Parameters />
  37. <Docs>
  38. <remarks>To be added.</remarks>
  39. <summary>
  40. <attribution license="cc4" from="Microsoft" modified="false" />
  41. <para>Creates a new instance of the <see cref="T:System.ServiceModel.Syndication.SyndicationItemFormatter" /> class. </para>
  42. </summary>
  43. </Docs>
  44. </Member>
  45. <Member MemberName=".ctor">
  46. <MemberSignature Language="C#" Value="protected SyndicationItemFormatter (System.ServiceModel.Syndication.SyndicationItem itemToWrite);" />
  47. <MemberSignature Language="ILAsm" Value=".method familyhidebysig specialname rtspecialname instance void .ctor(class System.ServiceModel.Syndication.SyndicationItem itemToWrite) cil managed" />
  48. <MemberType>Constructor</MemberType>
  49. <AssemblyInfo>
  50. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  51. </AssemblyInfo>
  52. <Parameters>
  53. <Parameter Name="itemToWrite" Type="System.ServiceModel.Syndication.SyndicationItem" />
  54. </Parameters>
  55. <Docs>
  56. <remarks>
  57. <attribution license="cc4" from="Microsoft" modified="false" />
  58. <para>A <see cref="T:System.ServiceModel.Syndication.SyndicationItemFormatter" /> must have a <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> associated with it. The <see cref="T:System.ServiceModel.Syndication.SyndicationItemFormatter" /> can then write out the <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> to an <see cref="T:System.Xml.XmlReader" />. The only way to associate a <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> with a <see cref="T:System.ServiceModel.Syndication.SyndicationItemFormatter" /> is by using this constructor.</para>
  59. </remarks>
  60. <summary>
  61. <attribution license="cc4" from="Microsoft" modified="false" />
  62. <para>Creates a new instance of the <see cref="T:System.ServiceModel.Syndication.SyndicationItemFormatter" /> class with the specified <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> instance.</para>
  63. </summary>
  64. <param name="itemToWrite">
  65. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> to write.</param>
  66. </Docs>
  67. </Member>
  68. <Member MemberName="CanRead">
  69. <MemberSignature Language="C#" Value="public abstract bool CanRead (System.Xml.XmlReader reader);" />
  70. <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool CanRead(class System.Xml.XmlReader reader) cil managed" />
  71. <MemberType>Method</MemberType>
  72. <AssemblyInfo>
  73. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  74. </AssemblyInfo>
  75. <ReturnValue>
  76. <ReturnType>System.Boolean</ReturnType>
  77. </ReturnValue>
  78. <Parameters>
  79. <Parameter Name="reader" Type="System.Xml.XmlReader" />
  80. </Parameters>
  81. <Docs>
  82. <remarks>To be added.</remarks>
  83. <summary>
  84. <attribution license="cc4" from="Microsoft" modified="false" />
  85. <para>Verifies whether the specified <see cref="T:System.Xml.XmlReader" /> contains a valid syndication item.</para>
  86. </summary>
  87. <returns>
  88. <attribution license="cc4" from="Microsoft" modified="false" />
  89. <para>true, if the XML reader contains a valid syndication item, otherwise false.</para>
  90. </returns>
  91. <param name="reader">
  92. <attribution license="cc4" from="Microsoft" modified="false" />An XML reader to check.</param>
  93. </Docs>
  94. </Member>
  95. <Member MemberName="CreateCategory">
  96. <MemberSignature Language="C#" Value="protected static System.ServiceModel.Syndication.SyndicationCategory CreateCategory (System.ServiceModel.Syndication.SyndicationItem item);" />
  97. <MemberSignature Language="ILAsm" Value=".method familyorassemblystatic hidebysig class System.ServiceModel.Syndication.SyndicationCategory CreateCategory(class System.ServiceModel.Syndication.SyndicationItem item) cil managed" />
  98. <MemberType>Method</MemberType>
  99. <AssemblyInfo>
  100. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  101. </AssemblyInfo>
  102. <ReturnValue>
  103. <ReturnType>System.ServiceModel.Syndication.SyndicationCategory</ReturnType>
  104. </ReturnValue>
  105. <Parameters>
  106. <Parameter Name="item" Type="System.ServiceModel.Syndication.SyndicationItem" />
  107. </Parameters>
  108. <Docs>
  109. <remarks>
  110. <attribution license="cc4" from="Microsoft" modified="false" />
  111. <para>The newly created <see cref="T:System.ServiceModel.Syndication.SyndicationCategory" /> instance is not automatically added to the <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> instance used to create it.</para>
  112. </remarks>
  113. <summary>
  114. <attribution license="cc4" from="Microsoft" modified="false" />
  115. <para>Creates a new instance of the <see cref="T:System.ServiceModel.Syndication.SyndicationCategory" /> class using the specified <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> instance.</para>
  116. </summary>
  117. <returns>
  118. <attribution license="cc4" from="Microsoft" modified="false" />
  119. <para>A new <see cref="T:System.ServiceModel.Syndication.SyndicationCategory" /> instance.</para>
  120. </returns>
  121. <param name="item">
  122. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> used to create the <see cref="T:System.ServiceModel.Syndication.SyndicationCategory" />.</param>
  123. </Docs>
  124. </Member>
  125. <Member MemberName="CreateItemInstance">
  126. <MemberSignature Language="C#" Value="protected abstract System.ServiceModel.Syndication.SyndicationItem CreateItemInstance ();" />
  127. <MemberSignature Language="ILAsm" Value=".method familyhidebysig newslot virtual instance class System.ServiceModel.Syndication.SyndicationItem CreateItemInstance() cil managed" />
  128. <MemberType>Method</MemberType>
  129. <AssemblyInfo>
  130. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  131. </AssemblyInfo>
  132. <ReturnValue>
  133. <ReturnType>System.ServiceModel.Syndication.SyndicationItem</ReturnType>
  134. </ReturnValue>
  135. <Parameters />
  136. <Docs>
  137. <remarks>
  138. <attribution license="cc4" from="Microsoft" modified="false" />
  139. <para>The newly created <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> instance is not automatically added to the <see cref="T:System.ServiceModel.Syndication.SyndicationItemFormatter" /> instance used to create it.</para>
  140. </remarks>
  141. <summary>
  142. <attribution license="cc4" from="Microsoft" modified="false" />
  143. <para>Creates a new instance of the <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> class. </para>
  144. </summary>
  145. <returns>
  146. <attribution license="cc4" from="Microsoft" modified="false" />
  147. <para>A new <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> instance.</para>
  148. </returns>
  149. </Docs>
  150. </Member>
  151. <Member MemberName="CreateLink">
  152. <MemberSignature Language="C#" Value="protected static System.ServiceModel.Syndication.SyndicationLink CreateLink (System.ServiceModel.Syndication.SyndicationItem item);" />
  153. <MemberSignature Language="ILAsm" Value=".method familyorassemblystatic hidebysig class System.ServiceModel.Syndication.SyndicationLink CreateLink(class System.ServiceModel.Syndication.SyndicationItem item) cil managed" />
  154. <MemberType>Method</MemberType>
  155. <AssemblyInfo>
  156. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  157. </AssemblyInfo>
  158. <ReturnValue>
  159. <ReturnType>System.ServiceModel.Syndication.SyndicationLink</ReturnType>
  160. </ReturnValue>
  161. <Parameters>
  162. <Parameter Name="item" Type="System.ServiceModel.Syndication.SyndicationItem" />
  163. </Parameters>
  164. <Docs>
  165. <remarks>
  166. <attribution license="cc4" from="Microsoft" modified="false" />
  167. <para>The newly created <see cref="T:System.ServiceModel.Syndication.SyndicationLink" /> instance is not automatically added to the <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> instance used to create it.</para>
  168. </remarks>
  169. <summary>
  170. <attribution license="cc4" from="Microsoft" modified="false" />
  171. <para>Creates a new instance of the <see cref="T:System.ServiceModel.Syndication.SyndicationLink" /> class. </para>
  172. </summary>
  173. <returns>
  174. <attribution license="cc4" from="Microsoft" modified="false" />
  175. <para>A new <see cref="T:System.ServiceModel.Syndication.SyndicationLink" /> instance.</para>
  176. </returns>
  177. <param name="item">
  178. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> to use to create the new <see cref="T:System.ServiceModel.Syndication.SyndicationLink" />.</param>
  179. </Docs>
  180. </Member>
  181. <Member MemberName="CreatePerson">
  182. <MemberSignature Language="C#" Value="protected static System.ServiceModel.Syndication.SyndicationPerson CreatePerson (System.ServiceModel.Syndication.SyndicationItem item);" />
  183. <MemberSignature Language="ILAsm" Value=".method familyorassemblystatic hidebysig class System.ServiceModel.Syndication.SyndicationPerson CreatePerson(class System.ServiceModel.Syndication.SyndicationItem item) cil managed" />
  184. <MemberType>Method</MemberType>
  185. <AssemblyInfo>
  186. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  187. </AssemblyInfo>
  188. <ReturnValue>
  189. <ReturnType>System.ServiceModel.Syndication.SyndicationPerson</ReturnType>
  190. </ReturnValue>
  191. <Parameters>
  192. <Parameter Name="item" Type="System.ServiceModel.Syndication.SyndicationItem" />
  193. </Parameters>
  194. <Docs>
  195. <remarks>
  196. <attribution license="cc4" from="Microsoft" modified="false" />
  197. <para>The newly created <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> instance is not automatically added to the <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> instance used to create it.</para>
  198. </remarks>
  199. <summary>
  200. <attribution license="cc4" from="Microsoft" modified="false" />
  201. <para>Creates a new <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> instance with the specified <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> instance.</para>
  202. </summary>
  203. <returns>
  204. <attribution license="cc4" from="Microsoft" modified="false" />
  205. <para>A new <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> instance.</para>
  206. </returns>
  207. <param name="item">
  208. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> instance used to create the new <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> instance.</param>
  209. </Docs>
  210. </Member>
  211. <Member MemberName="Item">
  212. <MemberSignature Language="C#" Value="public System.ServiceModel.Syndication.SyndicationItem Item { get; }" />
  213. <MemberSignature Language="ILAsm" Value=".property instance class System.ServiceModel.Syndication.SyndicationItem Item" />
  214. <MemberType>Property</MemberType>
  215. <AssemblyInfo>
  216. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  217. </AssemblyInfo>
  218. <ReturnValue>
  219. <ReturnType>System.ServiceModel.Syndication.SyndicationItem</ReturnType>
  220. </ReturnValue>
  221. <Docs>
  222. <value>To be added.</value>
  223. <remarks>
  224. <attribution license="cc4" from="Microsoft" modified="false" />
  225. <para>A <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> is associated with the <see cref="T:System.ServiceModel.Syndication.SyndicationItemFormatter" /> by passing in a <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> instance to the <see cref="T:System.ServiceModel.Syndication.SyndicationItemFormatter" /> constructor.</para>
  226. </remarks>
  227. <summary>
  228. <attribution license="cc4" from="Microsoft" modified="false" />
  229. <para>Gets the <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> associated with the formatter.</para>
  230. </summary>
  231. </Docs>
  232. </Member>
  233. <Member MemberName="LoadElementExtensions">
  234. <MemberSignature Language="C#" Value="protected static void LoadElementExtensions (System.Xml.XmlReader reader, System.ServiceModel.Syndication.SyndicationCategory category, int maxExtensionSize);" />
  235. <MemberSignature Language="ILAsm" Value=".method familyorassemblystatic hidebysig void LoadElementExtensions(class System.Xml.XmlReader reader, class System.ServiceModel.Syndication.SyndicationCategory category, int32 maxExtensionSize) cil managed" />
  236. <MemberType>Method</MemberType>
  237. <AssemblyInfo>
  238. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  239. </AssemblyInfo>
  240. <ReturnValue>
  241. <ReturnType>System.Void</ReturnType>
  242. </ReturnValue>
  243. <Parameters>
  244. <Parameter Name="reader" Type="System.Xml.XmlReader" />
  245. <Parameter Name="category" Type="System.ServiceModel.Syndication.SyndicationCategory" />
  246. <Parameter Name="maxExtensionSize" Type="System.Int32" />
  247. </Parameters>
  248. <Docs>
  249. <remarks>
  250. <attribution license="cc4" from="Microsoft" modified="false" />
  251. <para>The RSS 2.0 and Atom 1.0 specifications allow you to add custom element extensions to a syndication feed. This method allows you to read in these element extensions from an <see cref="T:System.Xml.XmlReader" />.</para>
  252. </remarks>
  253. <summary>
  254. <attribution license="cc4" from="Microsoft" modified="false" />
  255. <para>Loads element extensions into the specified <see cref="T:System.ServiceModel.Syndication.SyndicationCategory" /> using the specified <see cref="T:System.Xml.XmlReader" /> and maximum extension size.</para>
  256. </summary>
  257. <param name="reader">
  258. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlReader" /> to read from.</param>
  259. <param name="category">
  260. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ServiceModel.Syndication.SyndicationCategory" /> to load the element extensions into.</param>
  261. <param name="maxExtensionSize">
  262. <attribution license="cc4" from="Microsoft" modified="false" />The maximum allowable size for an element extension (in bytes).</param>
  263. </Docs>
  264. </Member>
  265. <Member MemberName="LoadElementExtensions">
  266. <MemberSignature Language="C#" Value="protected static void LoadElementExtensions (System.Xml.XmlReader reader, System.ServiceModel.Syndication.SyndicationItem item, int maxExtensionSize);" />
  267. <MemberSignature Language="ILAsm" Value=".method familyorassemblystatic hidebysig void LoadElementExtensions(class System.Xml.XmlReader reader, class System.ServiceModel.Syndication.SyndicationItem item, int32 maxExtensionSize) cil managed" />
  268. <MemberType>Method</MemberType>
  269. <AssemblyInfo>
  270. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  271. </AssemblyInfo>
  272. <ReturnValue>
  273. <ReturnType>System.Void</ReturnType>
  274. </ReturnValue>
  275. <Parameters>
  276. <Parameter Name="reader" Type="System.Xml.XmlReader" />
  277. <Parameter Name="item" Type="System.ServiceModel.Syndication.SyndicationItem" />
  278. <Parameter Name="maxExtensionSize" Type="System.Int32" />
  279. </Parameters>
  280. <Docs>
  281. <remarks>
  282. <attribution license="cc4" from="Microsoft" modified="false" />
  283. <para>The RSS 2.0 and Atom 1.0 specifications allow you to add custom element extensions to a syndication feed. This method allows you to read in these element extensions from an <see cref="T:System.Xml.XmlReader" />.</para>
  284. </remarks>
  285. <summary>
  286. <attribution license="cc4" from="Microsoft" modified="false" />
  287. <para>Loads element extensions into the specified <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> using the specified <see cref="T:System.Xml.XmlReader" /> and maximum extension size.</para>
  288. </summary>
  289. <param name="reader">
  290. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlReader" /> to read from.</param>
  291. <param name="item">
  292. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> to load the element extensions into.</param>
  293. <param name="maxExtensionSize">
  294. <attribution license="cc4" from="Microsoft" modified="false" />The maximum allowable size for an element extension (in bytes).</param>
  295. </Docs>
  296. </Member>
  297. <Member MemberName="LoadElementExtensions">
  298. <MemberSignature Language="C#" Value="protected static void LoadElementExtensions (System.Xml.XmlReader reader, System.ServiceModel.Syndication.SyndicationLink link, int maxExtensionSize);" />
  299. <MemberSignature Language="ILAsm" Value=".method familyorassemblystatic hidebysig void LoadElementExtensions(class System.Xml.XmlReader reader, class System.ServiceModel.Syndication.SyndicationLink link, int32 maxExtensionSize) cil managed" />
  300. <MemberType>Method</MemberType>
  301. <AssemblyInfo>
  302. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  303. </AssemblyInfo>
  304. <ReturnValue>
  305. <ReturnType>System.Void</ReturnType>
  306. </ReturnValue>
  307. <Parameters>
  308. <Parameter Name="reader" Type="System.Xml.XmlReader" />
  309. <Parameter Name="link" Type="System.ServiceModel.Syndication.SyndicationLink" />
  310. <Parameter Name="maxExtensionSize" Type="System.Int32" />
  311. </Parameters>
  312. <Docs>
  313. <remarks>
  314. <attribution license="cc4" from="Microsoft" modified="false" />
  315. <para>The RSS 2.0 and Atom 1.0 specifications allow you to add custom element extensions to a syndication feed. This method allows you to read in these element extensions from an <see cref="T:System.Xml.XmlReader" />.</para>
  316. </remarks>
  317. <summary>
  318. <attribution license="cc4" from="Microsoft" modified="false" />
  319. <para>Loads element extensions into the specified <see cref="T:System.ServiceModel.Syndication.SyndicationLink" /> using the specified <see cref="T:System.Xml.XmlReader" /> and maximum extension size.</para>
  320. </summary>
  321. <param name="reader">
  322. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlReader" /> to read from.</param>
  323. <param name="link">
  324. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ServiceModel.Syndication.SyndicationLink" /> to load the element extensions into.</param>
  325. <param name="maxExtensionSize">
  326. <attribution license="cc4" from="Microsoft" modified="false" />The maximum allowable size for an element extension (in bytes).</param>
  327. </Docs>
  328. </Member>
  329. <Member MemberName="LoadElementExtensions">
  330. <MemberSignature Language="C#" Value="protected static void LoadElementExtensions (System.Xml.XmlReader reader, System.ServiceModel.Syndication.SyndicationPerson person, int maxExtensionSize);" />
  331. <MemberSignature Language="ILAsm" Value=".method familyorassemblystatic hidebysig void LoadElementExtensions(class System.Xml.XmlReader reader, class System.ServiceModel.Syndication.SyndicationPerson person, int32 maxExtensionSize) cil managed" />
  332. <MemberType>Method</MemberType>
  333. <AssemblyInfo>
  334. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  335. </AssemblyInfo>
  336. <ReturnValue>
  337. <ReturnType>System.Void</ReturnType>
  338. </ReturnValue>
  339. <Parameters>
  340. <Parameter Name="reader" Type="System.Xml.XmlReader" />
  341. <Parameter Name="person" Type="System.ServiceModel.Syndication.SyndicationPerson" />
  342. <Parameter Name="maxExtensionSize" Type="System.Int32" />
  343. </Parameters>
  344. <Docs>
  345. <remarks>
  346. <attribution license="cc4" from="Microsoft" modified="false" />
  347. <para>The RSS 2.0 and Atom 1.0 specifications allow you to add custom element extensions to a syndication feed. This method allows you to read in these element extensions from an <see cref="T:System.Xml.XmlReader" />.</para>
  348. </remarks>
  349. <summary>
  350. <attribution license="cc4" from="Microsoft" modified="false" />
  351. <para>Loads element extensions into the specified <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> using the specified <see cref="T:System.Xml.XmlReader" /> and maximum extension size.</para>
  352. </summary>
  353. <param name="reader">
  354. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlReader" /> to read from.</param>
  355. <param name="person">
  356. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> to load the element extensions into.</param>
  357. <param name="maxExtensionSize">
  358. <attribution license="cc4" from="Microsoft" modified="false" />The maximum allowable size for an element extension (in bytes).</param>
  359. </Docs>
  360. </Member>
  361. <Member MemberName="ReadFrom">
  362. <MemberSignature Language="C#" Value="public abstract void ReadFrom (System.Xml.XmlReader reader);" />
  363. <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void ReadFrom(class System.Xml.XmlReader reader) cil managed" />
  364. <MemberType>Method</MemberType>
  365. <AssemblyInfo>
  366. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  367. </AssemblyInfo>
  368. <ReturnValue>
  369. <ReturnType>System.Void</ReturnType>
  370. </ReturnValue>
  371. <Parameters>
  372. <Parameter Name="reader" Type="System.Xml.XmlReader" />
  373. </Parameters>
  374. <Docs>
  375. <remarks>
  376. <attribution license="cc4" from="Microsoft" modified="false" />
  377. <para>Creates a new <see cref="T:System.ServiceModel.Syndication.SyndicationItem" />, associates it with the <see cref="T:System.ServiceModel.Syndication.SyndicationItemFormatter" /> and reads the feed into the <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> instance.</para>
  378. </remarks>
  379. <summary>
  380. <attribution license="cc4" from="Microsoft" modified="false" />
  381. <para>Reads in a <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> from the specified <see cref="T:System.Xml.XmlReader" />.</para>
  382. </summary>
  383. <param name="reader">
  384. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlReader" /> to read from.</param>
  385. </Docs>
  386. </Member>
  387. <Member MemberName="SetItem">
  388. <MemberSignature Language="C#" Value="protected virtual void SetItem (System.ServiceModel.Syndication.SyndicationItem item);" />
  389. <MemberSignature Language="ILAsm" Value=".method familyorassemblyhidebysig newslot virtual instance void SetItem(class System.ServiceModel.Syndication.SyndicationItem item) cil managed" />
  390. <MemberType>Method</MemberType>
  391. <AssemblyInfo>
  392. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  393. </AssemblyInfo>
  394. <ReturnValue>
  395. <ReturnType>System.Void</ReturnType>
  396. </ReturnValue>
  397. <Parameters>
  398. <Parameter Name="item" Type="System.ServiceModel.Syndication.SyndicationItem" />
  399. </Parameters>
  400. <Docs>
  401. <remarks>
  402. <attribution license="cc4" from="Microsoft" modified="false" />
  403. <para>This method is protected and cannot be called from user code. To associate a <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> instance with a <see cref="T:System.ServiceModel.Syndication.SyndicationItemFormatter" />, either create a new <see cref="T:System.ServiceModel.Syndication.SyndicationItemFormatter" /> instance and pass the constructor a <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> instance or load a <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> instance into the <see cref="T:System.ServiceModel.Syndication.SyndicationItemFormatter" /> by calling <see cref="M:System.ServiceModel.Syndication.SyndicationItemFormatter.ReadFrom(System.Xml.XmlReader)" />.</para>
  404. </remarks>
  405. <summary>
  406. <attribution license="cc4" from="Microsoft" modified="false" />
  407. <para>Associates a <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> instance with the <see cref="T:System.ServiceModel.Syndication.SyndicationItemFormatter" />.</para>
  408. </summary>
  409. <param name="item">
  410. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> to associate with the <see cref="T:System.ServiceModel.Syndication.SyndicationItemFormatter" />.</param>
  411. </Docs>
  412. </Member>
  413. <Member MemberName="ToString">
  414. <MemberSignature Language="C#" Value="public override string ToString ();" />
  415. <MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance string ToString() cil managed" />
  416. <MemberType>Method</MemberType>
  417. <AssemblyInfo>
  418. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  419. </AssemblyInfo>
  420. <ReturnValue>
  421. <ReturnType>System.String</ReturnType>
  422. </ReturnValue>
  423. <Parameters />
  424. <Docs>
  425. <remarks>To be added.</remarks>
  426. <summary>
  427. <attribution license="cc4" from="Microsoft" modified="false" />
  428. <para>Gets a string representation of the <see cref="T:System.ServiceModel.Syndication.SyndicationItemFormatter" /> instance.</para>
  429. </summary>
  430. <returns>
  431. <attribution license="cc4" from="Microsoft" modified="false" />
  432. <para>The <see cref="T:System.ServiceModel.Syndication.SyndicationItemFormatter" /> instance.</para>
  433. </returns>
  434. </Docs>
  435. </Member>
  436. <Member MemberName="TryParseAttribute">
  437. <MemberSignature Language="C#" Value="protected static bool TryParseAttribute (string name, string ns, string value, System.ServiceModel.Syndication.SyndicationCategory category, string version);" />
  438. <MemberSignature Language="ILAsm" Value=".method familyorassemblystatic hidebysig bool TryParseAttribute(string name, string ns, string value, class System.ServiceModel.Syndication.SyndicationCategory category, string version) cil managed" />
  439. <MemberType>Method</MemberType>
  440. <AssemblyInfo>
  441. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  442. </AssemblyInfo>
  443. <ReturnValue>
  444. <ReturnType>System.Boolean</ReturnType>
  445. </ReturnValue>
  446. <Parameters>
  447. <Parameter Name="name" Type="System.String" />
  448. <Parameter Name="ns" Type="System.String" />
  449. <Parameter Name="value" Type="System.String" />
  450. <Parameter Name="category" Type="System.ServiceModel.Syndication.SyndicationCategory" />
  451. <Parameter Name="version" Type="System.String" />
  452. </Parameters>
  453. <Docs>
  454. <remarks>
  455. <attribution license="cc4" from="Microsoft" modified="false" />
  456. <para>To control how attribute extensions are parsed, derive your own class from <see cref="T:System.ServiceModel.Syndication.SyndicationCategory" /> and override the <see cref="M:System.ServiceModel.Syndication.SyndicationCategory.TryParseAttribute(System.String,System.String,System.String,System.String)" /> method.</para>
  457. </remarks>
  458. <summary>
  459. <attribution license="cc4" from="Microsoft" modified="false" />
  460. <para>Attempts to parse an attribute extension using the specified <see cref="T:System.ServiceModel.Syndication.SyndicationCategory" /> instance.</para>
  461. </summary>
  462. <returns>
  463. <attribution license="cc4" from="Microsoft" modified="false" />
  464. <para>A value that indicates whether the attribute was parsed successfully.</para>
  465. </returns>
  466. <param name="name">
  467. <attribution license="cc4" from="Microsoft" modified="false" />The name of the element.</param>
  468. <param name="ns">
  469. <attribution license="cc4" from="Microsoft" modified="false" />The namespace of the element.</param>
  470. <param name="value">
  471. <attribution license="cc4" from="Microsoft" modified="false" />The attribute to parse.</param>
  472. <param name="category">
  473. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ServiceModel.Syndication.SyndicationCategory" /> instance to use.</param>
  474. <param name="version">
  475. <attribution license="cc4" from="Microsoft" modified="false" />The syndication version to use when parsing.</param>
  476. </Docs>
  477. </Member>
  478. <Member MemberName="TryParseAttribute">
  479. <MemberSignature Language="C#" Value="protected static bool TryParseAttribute (string name, string ns, string value, System.ServiceModel.Syndication.SyndicationItem item, string version);" />
  480. <MemberSignature Language="ILAsm" Value=".method familyorassemblystatic hidebysig bool TryParseAttribute(string name, string ns, string value, class System.ServiceModel.Syndication.SyndicationItem item, string version) cil managed" />
  481. <MemberType>Method</MemberType>
  482. <AssemblyInfo>
  483. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  484. </AssemblyInfo>
  485. <ReturnValue>
  486. <ReturnType>System.Boolean</ReturnType>
  487. </ReturnValue>
  488. <Parameters>
  489. <Parameter Name="name" Type="System.String" />
  490. <Parameter Name="ns" Type="System.String" />
  491. <Parameter Name="value" Type="System.String" />
  492. <Parameter Name="item" Type="System.ServiceModel.Syndication.SyndicationItem" />
  493. <Parameter Name="version" Type="System.String" />
  494. </Parameters>
  495. <Docs>
  496. <remarks>
  497. <attribution license="cc4" from="Microsoft" modified="false" />
  498. <para>To control how attribute extensions are parsed, derive your own class from <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> and override the <see cref="M:System.ServiceModel.Syndication.SyndicationItem.TryParseAttribute(System.String,System.String,System.String,System.String)" /> method.</para>
  499. </remarks>
  500. <summary>
  501. <attribution license="cc4" from="Microsoft" modified="false" />
  502. <para>Attempts to parse an attribute extension using the specified <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> instance.</para>
  503. </summary>
  504. <returns>
  505. <attribution license="cc4" from="Microsoft" modified="false" />
  506. <para>A value that indicates whether the attribute was parsed successfully.</para>
  507. </returns>
  508. <param name="name">
  509. <attribution license="cc4" from="Microsoft" modified="false" />The name of the element.</param>
  510. <param name="ns">
  511. <attribution license="cc4" from="Microsoft" modified="false" />The namespace of the element.</param>
  512. <param name="value">
  513. <attribution license="cc4" from="Microsoft" modified="false" />The attribute to parse.</param>
  514. <param name="item">
  515. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> instance to use.</param>
  516. <param name="version">
  517. <attribution license="cc4" from="Microsoft" modified="false" />The syndication version to use when parsing.</param>
  518. </Docs>
  519. </Member>
  520. <Member MemberName="TryParseAttribute">
  521. <MemberSignature Language="C#" Value="protected static bool TryParseAttribute (string name, string ns, string value, System.ServiceModel.Syndication.SyndicationLink link, string version);" />
  522. <MemberSignature Language="ILAsm" Value=".method familyorassemblystatic hidebysig bool TryParseAttribute(string name, string ns, string value, class System.ServiceModel.Syndication.SyndicationLink link, string version) cil managed" />
  523. <MemberType>Method</MemberType>
  524. <AssemblyInfo>
  525. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  526. </AssemblyInfo>
  527. <ReturnValue>
  528. <ReturnType>System.Boolean</ReturnType>
  529. </ReturnValue>
  530. <Parameters>
  531. <Parameter Name="name" Type="System.String" />
  532. <Parameter Name="ns" Type="System.String" />
  533. <Parameter Name="value" Type="System.String" />
  534. <Parameter Name="link" Type="System.ServiceModel.Syndication.SyndicationLink" />
  535. <Parameter Name="version" Type="System.String" />
  536. </Parameters>
  537. <Docs>
  538. <remarks>
  539. <attribution license="cc4" from="Microsoft" modified="false" />
  540. <para>To control how attribute extensions are parsed, derive your own class from <see cref="T:System.ServiceModel.Syndication.SyndicationLink" /> and override the <see cref="M:System.ServiceModel.Syndication.SyndicationLink.TryParseAttribute(System.String,System.String,System.String,System.String)" /> method.</para>
  541. </remarks>
  542. <summary>
  543. <attribution license="cc4" from="Microsoft" modified="false" />
  544. <para>Attempts to parse an attribute extension using the specified <see cref="T:System.ServiceModel.Syndication.SyndicationLink" /> instance.</para>
  545. </summary>
  546. <returns>
  547. <attribution license="cc4" from="Microsoft" modified="false" />
  548. <para>A value that indicates whether the attribute was parsed successfully.</para>
  549. </returns>
  550. <param name="name">
  551. <attribution license="cc4" from="Microsoft" modified="false" />The name of the element.</param>
  552. <param name="ns">
  553. <attribution license="cc4" from="Microsoft" modified="false" />The namespace of the element.</param>
  554. <param name="value">
  555. <attribution license="cc4" from="Microsoft" modified="false" />The attribute to parse.</param>
  556. <param name="link">
  557. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ServiceModel.Syndication.SyndicationLink" /> instance to use.</param>
  558. <param name="version">
  559. <attribution license="cc4" from="Microsoft" modified="false" />The syndication version to use when parsing.</param>
  560. </Docs>
  561. </Member>
  562. <Member MemberName="TryParseAttribute">
  563. <MemberSignature Language="C#" Value="protected static bool TryParseAttribute (string name, string ns, string value, System.ServiceModel.Syndication.SyndicationPerson person, string version);" />
  564. <MemberSignature Language="ILAsm" Value=".method familyorassemblystatic hidebysig bool TryParseAttribute(string name, string ns, string value, class System.ServiceModel.Syndication.SyndicationPerson person, string version) cil managed" />
  565. <MemberType>Method</MemberType>
  566. <AssemblyInfo>
  567. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  568. </AssemblyInfo>
  569. <ReturnValue>
  570. <ReturnType>System.Boolean</ReturnType>
  571. </ReturnValue>
  572. <Parameters>
  573. <Parameter Name="name" Type="System.String" />
  574. <Parameter Name="ns" Type="System.String" />
  575. <Parameter Name="value" Type="System.String" />
  576. <Parameter Name="person" Type="System.ServiceModel.Syndication.SyndicationPerson" />
  577. <Parameter Name="version" Type="System.String" />
  578. </Parameters>
  579. <Docs>
  580. <remarks>
  581. <attribution license="cc4" from="Microsoft" modified="false" />
  582. <para>To control how attribute extensions are parsed, derive your own class from <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> and override the <see cref="M:System.ServiceModel.Syndication.SyndicationPerson.TryParseAttribute(System.String,System.String,System.String,System.String)" /> method.</para>
  583. </remarks>
  584. <summary>
  585. <attribution license="cc4" from="Microsoft" modified="false" />
  586. <para>Attempts to parse an attribute extension using the specified <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> instance.</para>
  587. </summary>
  588. <returns>
  589. <attribution license="cc4" from="Microsoft" modified="false" />
  590. <para>A value that indicates whether the attribute was parsed successfully.</para>
  591. </returns>
  592. <param name="name">
  593. <attribution license="cc4" from="Microsoft" modified="false" />The name of the element.</param>
  594. <param name="ns">
  595. <attribution license="cc4" from="Microsoft" modified="false" />The namespace of the element.</param>
  596. <param name="value">
  597. <attribution license="cc4" from="Microsoft" modified="false" />The attribute to parse.</param>
  598. <param name="person">
  599. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> instance to use.</param>
  600. <param name="version">
  601. <attribution license="cc4" from="Microsoft" modified="false" />The syndication version to use when parsing.</param>
  602. </Docs>
  603. </Member>
  604. <Member MemberName="TryParseContent">
  605. <MemberSignature Language="C#" Value="protected static bool TryParseContent (System.Xml.XmlReader reader, System.ServiceModel.Syndication.SyndicationItem item, string contentType, string version, out System.ServiceModel.Syndication.SyndicationContent content);" />
  606. <MemberSignature Language="ILAsm" Value=".method familyorassemblystatic hidebysig bool TryParseContent(class System.Xml.XmlReader reader, class System.ServiceModel.Syndication.SyndicationItem item, string contentType, string version, class System.ServiceModel.Syndication.SyndicationContent content) cil managed" />
  607. <MemberType>Method</MemberType>
  608. <AssemblyInfo>
  609. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  610. </AssemblyInfo>
  611. <ReturnValue>
  612. <ReturnType>System.Boolean</ReturnType>
  613. </ReturnValue>
  614. <Parameters>
  615. <Parameter Name="reader" Type="System.Xml.XmlReader" />
  616. <Parameter Name="item" Type="System.ServiceModel.Syndication.SyndicationItem" />
  617. <Parameter Name="contentType" Type="System.String" />
  618. <Parameter Name="version" Type="System.String" />
  619. <Parameter Name="content" Type="System.ServiceModel.Syndication.SyndicationContent&amp;" RefType="out" />
  620. </Parameters>
  621. <Docs>
  622. <param name="reader">To be added.</param>
  623. <param name="item">To be added.</param>
  624. <param name="contentType">To be added.</param>
  625. <param name="version">To be added.</param>
  626. <param name="content">To be added.</param>
  627. <summary>To be added.</summary>
  628. <returns>To be added.</returns>
  629. <remarks>To be added.</remarks>
  630. </Docs>
  631. </Member>
  632. <Member MemberName="TryParseElement">
  633. <MemberSignature Language="C#" Value="protected static bool TryParseElement (System.Xml.XmlReader reader, System.ServiceModel.Syndication.SyndicationCategory category, string version);" />
  634. <MemberSignature Language="ILAsm" Value=".method familyorassemblystatic hidebysig bool TryParseElement(class System.Xml.XmlReader reader, class System.ServiceModel.Syndication.SyndicationCategory category, string version) cil managed" />
  635. <MemberType>Method</MemberType>
  636. <AssemblyInfo>
  637. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  638. </AssemblyInfo>
  639. <ReturnValue>
  640. <ReturnType>System.Boolean</ReturnType>
  641. </ReturnValue>
  642. <Parameters>
  643. <Parameter Name="reader" Type="System.Xml.XmlReader" />
  644. <Parameter Name="category" Type="System.ServiceModel.Syndication.SyndicationCategory" />
  645. <Parameter Name="version" Type="System.String" />
  646. </Parameters>
  647. <Docs>
  648. <remarks>
  649. <attribution license="cc4" from="Microsoft" modified="false" />
  650. <para>To control how element extensions are parsed, derive your own class from <see cref="T:System.ServiceModel.Syndication.SyndicationCategory" /> and override the <see cref="M:System.ServiceModel.Syndication.SyndicationCategory.TryParseElement(System.Xml.XmlReader,System.String)" /> method.</para>
  651. </remarks>
  652. <summary>
  653. <attribution license="cc4" from="Microsoft" modified="false" />
  654. <para>Attempts to parse an element extension using the specified <see cref="T:System.ServiceModel.Syndication.SyndicationCategory" /> instance.</para>
  655. </summary>
  656. <returns>
  657. <attribution license="cc4" from="Microsoft" modified="false" />
  658. <para>A value that indicates whether the element was parsed successfully.</para>
  659. </returns>
  660. <param name="reader">
  661. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlReader" /> to read from.</param>
  662. <param name="category">
  663. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ServiceModel.Syndication.SyndicationCategory" /> instance to use.</param>
  664. <param name="version">
  665. <attribution license="cc4" from="Microsoft" modified="false" />The syndication version to use when parsing.</param>
  666. </Docs>
  667. </Member>
  668. <Member MemberName="TryParseElement">
  669. <MemberSignature Language="C#" Value="protected static bool TryParseElement (System.Xml.XmlReader reader, System.ServiceModel.Syndication.SyndicationItem item, string version);" />
  670. <MemberSignature Language="ILAsm" Value=".method familyorassemblystatic hidebysig bool TryParseElement(class System.Xml.XmlReader reader, class System.ServiceModel.Syndication.SyndicationItem item, string version) cil managed" />
  671. <MemberType>Method</MemberType>
  672. <AssemblyInfo>
  673. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  674. </AssemblyInfo>
  675. <ReturnValue>
  676. <ReturnType>System.Boolean</ReturnType>
  677. </ReturnValue>
  678. <Parameters>
  679. <Parameter Name="reader" Type="System.Xml.XmlReader" />
  680. <Parameter Name="item" Type="System.ServiceModel.Syndication.SyndicationItem" />
  681. <Parameter Name="version" Type="System.String" />
  682. </Parameters>
  683. <Docs>
  684. <remarks>
  685. <attribution license="cc4" from="Microsoft" modified="false" />
  686. <para>To control how element extensions are parsed, derive your own class from <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> and override the <see cref="M:System.ServiceModel.Syndication.SyndicationItem.TryParseElement(System.Xml.XmlReader,System.String)" /> method.</para>
  687. </remarks>
  688. <summary>
  689. <attribution license="cc4" from="Microsoft" modified="false" />
  690. <para>Attempts to parse an element extension using the specified <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> instance.</para>
  691. </summary>
  692. <returns>
  693. <attribution license="cc4" from="Microsoft" modified="false" />
  694. <para>A value that indicates whether the element was parsed successfully.</para>
  695. </returns>
  696. <param name="reader">
  697. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlReader" /> to read from.</param>
  698. <param name="item">
  699. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> instance to use.</param>
  700. <param name="version">
  701. <attribution license="cc4" from="Microsoft" modified="false" />The syndication version to use when parsing.</param>
  702. </Docs>
  703. </Member>
  704. <Member MemberName="TryParseElement">
  705. <MemberSignature Language="C#" Value="protected static bool TryParseElement (System.Xml.XmlReader reader, System.ServiceModel.Syndication.SyndicationLink link, string version);" />
  706. <MemberSignature Language="ILAsm" Value=".method familyorassemblystatic hidebysig bool TryParseElement(class System.Xml.XmlReader reader, class System.ServiceModel.Syndication.SyndicationLink link, string version) cil managed" />
  707. <MemberType>Method</MemberType>
  708. <AssemblyInfo>
  709. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  710. </AssemblyInfo>
  711. <ReturnValue>
  712. <ReturnType>System.Boolean</ReturnType>
  713. </ReturnValue>
  714. <Parameters>
  715. <Parameter Name="reader" Type="System.Xml.XmlReader" />
  716. <Parameter Name="link" Type="System.ServiceModel.Syndication.SyndicationLink" />
  717. <Parameter Name="version" Type="System.String" />
  718. </Parameters>
  719. <Docs>
  720. <remarks>
  721. <attribution license="cc4" from="Microsoft" modified="false" />
  722. <para>To control how element extensions are parsed, derive your own class from <see cref="T:System.ServiceModel.Syndication.SyndicationLink" /> and override the <see cref="M:System.ServiceModel.Syndication.SyndicationLink.TryParseElement(System.Xml.XmlReader,System.String)" /> method.</para>
  723. </remarks>
  724. <summary>
  725. <attribution license="cc4" from="Microsoft" modified="false" />
  726. <para>Attempts to parse an element extension using the specified <see cref="T:System.ServiceModel.Syndication.SyndicationLink" /> instance.</para>
  727. </summary>
  728. <returns>
  729. <attribution license="cc4" from="Microsoft" modified="false" />
  730. <para>A value that indicates whether the element was parsed successfully.</para>
  731. </returns>
  732. <param name="reader">
  733. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlReader" /> to read from.</param>
  734. <param name="link">
  735. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> instance to use.</param>
  736. <param name="version">
  737. <attribution license="cc4" from="Microsoft" modified="false" />The syndication version to use when parsing.</param>
  738. </Docs>
  739. </Member>
  740. <Member MemberName="TryParseElement">
  741. <MemberSignature Language="C#" Value="protected static bool TryParseElement (System.Xml.XmlReader reader, System.ServiceModel.Syndication.SyndicationPerson person, string version);" />
  742. <MemberSignature Language="ILAsm" Value=".method familyorassemblystatic hidebysig bool TryParseElement(class System.Xml.XmlReader reader, class System.ServiceModel.Syndication.SyndicationPerson person, string version) cil managed" />
  743. <MemberType>Method</MemberType>
  744. <AssemblyInfo>
  745. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  746. </AssemblyInfo>
  747. <ReturnValue>
  748. <ReturnType>System.Boolean</ReturnType>
  749. </ReturnValue>
  750. <Parameters>
  751. <Parameter Name="reader" Type="System.Xml.XmlReader" />
  752. <Parameter Name="person" Type="System.ServiceModel.Syndication.SyndicationPerson" />
  753. <Parameter Name="version" Type="System.String" />
  754. </Parameters>
  755. <Docs>
  756. <remarks>
  757. <attribution license="cc4" from="Microsoft" modified="false" />
  758. <para>To control how element extensions are parsed, derive your own class from <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> and override the <see cref="M:System.ServiceModel.Syndication.SyndicationPerson.TryParseElement(System.Xml.XmlReader,System.String)" /> method.</para>
  759. </remarks>
  760. <summary>
  761. <attribution license="cc4" from="Microsoft" modified="false" />
  762. <para>Attempts to parse an element extension using the specified <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> instance.</para>
  763. </summary>
  764. <returns>
  765. <attribution license="cc4" from="Microsoft" modified="false" />
  766. <para>A value that indicates whether the element was parsed successfully.</para>
  767. </returns>
  768. <param name="reader">
  769. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlReader" /> to read from.</param>
  770. <param name="person">
  771. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> instance to use.</param>
  772. <param name="version">
  773. <attribution license="cc4" from="Microsoft" modified="false" />The syndication version to use when parsing.</param>
  774. </Docs>
  775. </Member>
  776. <Member MemberName="Version">
  777. <MemberSignature Language="C#" Value="public abstract string Version { get; }" />
  778. <MemberSignature Language="ILAsm" Value=".property instance string Version" />
  779. <MemberType>Property</MemberType>
  780. <AssemblyInfo>
  781. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  782. </AssemblyInfo>
  783. <ReturnValue>
  784. <ReturnType>System.String</ReturnType>
  785. </ReturnValue>
  786. <Docs>
  787. <value>To be added.</value>
  788. <remarks>
  789. <attribution license="cc4" from="Microsoft" modified="false" />
  790. <para>indigo2 supports the RSS 2.0 and Atom 1.0 specifications.</para>
  791. </remarks>
  792. <summary>
  793. <attribution license="cc4" from="Microsoft" modified="false" />
  794. <para>Gets the syndication version of the formatter.</para>
  795. </summary>
  796. </Docs>
  797. </Member>
  798. <Member MemberName="WriteAttributeExtensions">
  799. <MemberSignature Language="C#" Value="protected static void WriteAttributeExtensions (System.Xml.XmlWriter writer, System.ServiceModel.Syndication.SyndicationCategory category, string version);" />
  800. <MemberSignature Language="ILAsm" Value=".method familyorassemblystatic hidebysig void WriteAttributeExtensions(class System.Xml.XmlWriter writer, class System.ServiceModel.Syndication.SyndicationCategory category, string version) cil managed" />
  801. <MemberType>Method</MemberType>
  802. <AssemblyInfo>
  803. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  804. </AssemblyInfo>
  805. <ReturnValue>
  806. <ReturnType>System.Void</ReturnType>
  807. </ReturnValue>
  808. <Parameters>
  809. <Parameter Name="writer" Type="System.Xml.XmlWriter" />
  810. <Parameter Name="category" Type="System.ServiceModel.Syndication.SyndicationCategory" />
  811. <Parameter Name="version" Type="System.String" />
  812. </Parameters>
  813. <Docs>
  814. <remarks>
  815. <attribution license="cc4" from="Microsoft" modified="false" />
  816. <para>To control how attribute extensions are written by the <see cref="T:System.ServiceModel.Syndication.SyndicationCategory" />, derive a class from <see cref="T:System.ServiceModel.Syndication.SyndicationCategory" /> and override the <see cref="M:System.ServiceModel.Syndication.SyndicationCategory.WriteAttributeExtensions(System.Xml.XmlWriter,System.String)" /> method.</para>
  817. </remarks>
  818. <summary>
  819. <attribution license="cc4" from="Microsoft" modified="false" />
  820. <para>Writes the attribute extensions in the <see cref="T:System.ServiceModel.Syndication.SyndicationCategory" /> instance to the specified <see cref="T:System.Xml.XmlWriter" /> in the specified syndication version.</para>
  821. </summary>
  822. <param name="writer">
  823. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlWriter" /> to write the extensions to.</param>
  824. <param name="category">
  825. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ServiceModel.Syndication.SyndicationCategory" /> instance that contains the attribute extensions to be written.</param>
  826. <param name="version">
  827. <attribution license="cc4" from="Microsoft" modified="false" />The syndication version to write the attribute extensions in.</param>
  828. </Docs>
  829. </Member>
  830. <Member MemberName="WriteAttributeExtensions">
  831. <MemberSignature Language="C#" Value="protected static void WriteAttributeExtensions (System.Xml.XmlWriter writer, System.ServiceModel.Syndication.SyndicationItem item, string version);" />
  832. <MemberSignature Language="ILAsm" Value=".method familyorassemblystatic hidebysig void WriteAttributeExtensions(class System.Xml.XmlWriter writer, class System.ServiceModel.Syndication.SyndicationItem item, string version) cil managed" />
  833. <MemberType>Method</MemberType>
  834. <AssemblyInfo>
  835. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  836. </AssemblyInfo>
  837. <ReturnValue>
  838. <ReturnType>System.Void</ReturnType>
  839. </ReturnValue>
  840. <Parameters>
  841. <Parameter Name="writer" Type="System.Xml.XmlWriter" />
  842. <Parameter Name="item" Type="System.ServiceModel.Syndication.SyndicationItem" />
  843. <Parameter Name="version" Type="System.String" />
  844. </Parameters>
  845. <Docs>
  846. <remarks>
  847. <attribution license="cc4" from="Microsoft" modified="false" />
  848. <para>To control how attribute extensions are written by the <see cref="T:System.ServiceModel.Syndication.SyndicationItem" />, derive a class from <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> and override the <see cref="M:System.ServiceModel.Syndication.SyndicationItem.WriteAttributeExtensions(System.Xml.XmlWriter,System.String)" /> method.</para>
  849. </remarks>
  850. <summary>
  851. <attribution license="cc4" from="Microsoft" modified="false" />
  852. <para>Writes the attribute extensions in the <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> instance to the specified <see cref="T:System.Xml.XmlWriter" /> in the specified syndication version.</para>
  853. </summary>
  854. <param name="writer">
  855. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlWriter" /> to write the extensions to.</param>
  856. <param name="item">
  857. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> instance that contains the attribute extensions to be written.</param>
  858. <param name="version">
  859. <attribution license="cc4" from="Microsoft" modified="false" />The syndication version to write the attribute extensions in.</param>
  860. </Docs>
  861. </Member>
  862. <Member MemberName="WriteAttributeExtensions">
  863. <MemberSignature Language="C#" Value="protected static void WriteAttributeExtensions (System.Xml.XmlWriter writer, System.ServiceModel.Syndication.SyndicationLink link, string version);" />
  864. <MemberSignature Language="ILAsm" Value=".method familyorassemblystatic hidebysig void WriteAttributeExtensions(class System.Xml.XmlWriter writer, class System.ServiceModel.Syndication.SyndicationLink link, string version) cil managed" />
  865. <MemberType>Method</MemberType>
  866. <AssemblyInfo>
  867. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  868. </AssemblyInfo>
  869. <ReturnValue>
  870. <ReturnType>System.Void</ReturnType>
  871. </ReturnValue>
  872. <Parameters>
  873. <Parameter Name="writer" Type="System.Xml.XmlWriter" />
  874. <Parameter Name="link" Type="System.ServiceModel.Syndication.SyndicationLink" />
  875. <Parameter Name="version" Type="System.String" />
  876. </Parameters>
  877. <Docs>
  878. <remarks>
  879. <attribution license="cc4" from="Microsoft" modified="false" />
  880. <para>To control how attribute extensions are written by the <see cref="T:System.ServiceModel.Syndication.SyndicationLink" />, derive a class from <see cref="T:System.ServiceModel.Syndication.SyndicationLink" /> and override the <see cref="M:System.ServiceModel.Syndication.SyndicationLink.WriteAttributeExtensions(System.Xml.XmlWriter,System.String)" /> method.</para>
  881. </remarks>
  882. <summary>
  883. <attribution license="cc4" from="Microsoft" modified="false" />
  884. <para>Writes the attribute extensions in the <see cref="T:System.ServiceModel.Syndication.SyndicationLink" /> instance to the specified <see cref="T:System.Xml.XmlWriter" /> in the specified syndication version.</para>
  885. </summary>
  886. <param name="writer">
  887. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlWriter" /> to write the extensions to.</param>
  888. <param name="link">
  889. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ServiceModel.Syndication.SyndicationLink" /> instance that contains the attribute extensions to be written.</param>
  890. <param name="version">
  891. <attribution license="cc4" from="Microsoft" modified="false" />The syndication version to write the attribute extensions in.</param>
  892. </Docs>
  893. </Member>
  894. <Member MemberName="WriteAttributeExtensions">
  895. <MemberSignature Language="C#" Value="protected static void WriteAttributeExtensions (System.Xml.XmlWriter writer, System.ServiceModel.Syndication.SyndicationPerson person, string version);" />
  896. <MemberSignature Language="ILAsm" Value=".method familyorassemblystatic hidebysig void WriteAttributeExtensions(class System.Xml.XmlWriter writer, class System.ServiceModel.Syndication.SyndicationPerson person, string version) cil managed" />
  897. <MemberType>Method</MemberType>
  898. <AssemblyInfo>
  899. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  900. </AssemblyInfo>
  901. <ReturnValue>
  902. <ReturnType>System.Void</ReturnType>
  903. </ReturnValue>
  904. <Parameters>
  905. <Parameter Name="writer" Type="System.Xml.XmlWriter" />
  906. <Parameter Name="person" Type="System.ServiceModel.Syndication.SyndicationPerson" />
  907. <Parameter Name="version" Type="System.String" />
  908. </Parameters>
  909. <Docs>
  910. <remarks>
  911. <attribution license="cc4" from="Microsoft" modified="false" />
  912. <para>To control how attribute extensions are written by the <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" />, derive a class from <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> and override the <see cref="M:System.ServiceModel.Syndication.SyndicationCategory.WriteAttributeExtensions(System.Xml.XmlWriter,System.String)" /> method.</para>
  913. </remarks>
  914. <summary>
  915. <attribution license="cc4" from="Microsoft" modified="false" />
  916. <para>Writes the attribute extensions in the <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> instance to the specified <see cref="T:System.Xml.XmlWriter" /> in the specified syndication version.</para>
  917. </summary>
  918. <param name="writer">
  919. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlWriter" /> to write the extensions to.</param>
  920. <param name="person">
  921. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> instance that contains the attribute extensions to be written.</param>
  922. <param name="version">
  923. <attribution license="cc4" from="Microsoft" modified="false" />The syndication version to write the attribute extensions in.</param>
  924. </Docs>
  925. </Member>
  926. <Member MemberName="WriteElementExtensions">
  927. <MemberSignature Language="C#" Value="protected void WriteElementExtensions (System.Xml.XmlWriter writer, System.ServiceModel.Syndication.SyndicationCategory category, string version);" />
  928. <MemberSignature Language="ILAsm" Value=".method familyorassemblyhidebysig instance void WriteElementExtensions(class System.Xml.XmlWriter writer, class System.ServiceModel.Syndication.SyndicationCategory category, string version) cil managed" />
  929. <MemberType>Method</MemberType>
  930. <AssemblyInfo>
  931. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  932. </AssemblyInfo>
  933. <ReturnValue>
  934. <ReturnType>System.Void</ReturnType>
  935. </ReturnValue>
  936. <Parameters>
  937. <Parameter Name="writer" Type="System.Xml.XmlWriter" />
  938. <Parameter Name="category" Type="System.ServiceModel.Syndication.SyndicationCategory" />
  939. <Parameter Name="version" Type="System.String" />
  940. </Parameters>
  941. <Docs>
  942. <remarks>
  943. <attribution license="cc4" from="Microsoft" modified="false" />
  944. <para>To control how element extensions are written by the <see cref="T:System.ServiceModel.Syndication.SyndicationCategory" />, derive a class from <see cref="T:System.ServiceModel.Syndication.SyndicationCategory" /> and override the <see cref="M:System.ServiceModel.Syndication.SyndicationCategory.WriteElementExtensions(System.Xml.XmlWriter,System.String)" /> method.</para>
  945. </remarks>
  946. <summary>
  947. <attribution license="cc4" from="Microsoft" modified="false" />
  948. <para>Writes the element extensions in the <see cref="T:System.ServiceModel.Syndication.SyndicationCategory" /> instance to the specified <see cref="T:System.Xml.XmlWriter" /> in the specified syndication version.</para>
  949. </summary>
  950. <param name="writer">
  951. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlWriter" /> to write the extensions to.</param>
  952. <param name="category">
  953. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ServiceModel.Syndication.SyndicationCategory" /> instance that contains the element extensions to be written.</param>
  954. <param name="version">
  955. <attribution license="cc4" from="Microsoft" modified="false" />The syndication version the extensions are written in.</param>
  956. </Docs>
  957. </Member>
  958. <Member MemberName="WriteElementExtensions">
  959. <MemberSignature Language="C#" Value="protected static void WriteElementExtensions (System.Xml.XmlWriter writer, System.ServiceModel.Syndication.SyndicationItem item, string version);" />
  960. <MemberSignature Language="ILAsm" Value=".method familyorassemblystatic hidebysig void WriteElementExtensions(class System.Xml.XmlWriter writer, class System.ServiceModel.Syndication.SyndicationItem item, string version) cil managed" />
  961. <MemberType>Method</MemberType>
  962. <AssemblyInfo>
  963. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  964. </AssemblyInfo>
  965. <ReturnValue>
  966. <ReturnType>System.Void</ReturnType>
  967. </ReturnValue>
  968. <Parameters>
  969. <Parameter Name="writer" Type="System.Xml.XmlWriter" />
  970. <Parameter Name="item" Type="System.ServiceModel.Syndication.SyndicationItem" />
  971. <Parameter Name="version" Type="System.String" />
  972. </Parameters>
  973. <Docs>
  974. <remarks>
  975. <attribution license="cc4" from="Microsoft" modified="false" />
  976. <para>To control how element extensions are written by the <see cref="T:System.ServiceModel.Syndication.SyndicationItem" />, derive a class from <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> and override the <see cref="M:System.ServiceModel.Syndication.SyndicationItem.WriteElementExtensions(System.Xml.XmlWriter,System.String)" /> method.</para>
  977. </remarks>
  978. <summary>
  979. <attribution license="cc4" from="Microsoft" modified="false" />
  980. <para>Writes the element extensions in the <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> instance to the specified <see cref="T:System.Xml.XmlWriter" /> in the specified syndication version.</para>
  981. </summary>
  982. <param name="writer">
  983. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlWriter" /> to write the extensions to.</param>
  984. <param name="item">
  985. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> instance that contains the element extensions to be written.</param>
  986. <param name="version">
  987. <attribution license="cc4" from="Microsoft" modified="false" />The syndication version the extensions are written in.</param>
  988. </Docs>
  989. </Member>
  990. <Member MemberName="WriteElementExtensions">
  991. <MemberSignature Language="C#" Value="protected void WriteElementExtensions (System.Xml.XmlWriter writer, System.ServiceModel.Syndication.SyndicationLink link, string version);" />
  992. <MemberSignature Language="ILAsm" Value=".method familyorassemblyhidebysig instance void WriteElementExtensions(class System.Xml.XmlWriter writer, class System.ServiceModel.Syndication.SyndicationLink link, string version) cil managed" />
  993. <MemberType>Method</MemberType>
  994. <AssemblyInfo>
  995. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  996. </AssemblyInfo>
  997. <ReturnValue>
  998. <ReturnType>System.Void</ReturnType>
  999. </ReturnValue>
  1000. <Parameters>
  1001. <Parameter Name="writer" Type="System.Xml.XmlWriter" />
  1002. <Parameter Name="link" Type="System.ServiceModel.Syndication.SyndicationLink" />
  1003. <Parameter Name="version" Type="System.String" />
  1004. </Parameters>
  1005. <Docs>
  1006. <remarks>
  1007. <attribution license="cc4" from="Microsoft" modified="false" />
  1008. <para>To control how element extensions are written by the <see cref="T:System.ServiceModel.Syndication.SyndicationLink" />, derive a class from <see cref="T:System.ServiceModel.Syndication.SyndicationLink" /> and override the <see cref="M:System.ServiceModel.Syndication.SyndicationLink.WriteElementExtensions(System.Xml.XmlWriter,System.String)" /> method.</para>
  1009. </remarks>
  1010. <summary>
  1011. <attribution license="cc4" from="Microsoft" modified="false" />
  1012. <para>Writes the element extensions in the <see cref="T:System.ServiceModel.Syndication.SyndicationLink" /> instance to the specified <see cref="T:System.Xml.XmlWriter" /> in the specified syndication version.</para>
  1013. </summary>
  1014. <param name="writer">
  1015. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlWriter" /> to write the extensions to.</param>
  1016. <param name="link">
  1017. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ServiceModel.Syndication.SyndicationLink" /> instance that contains the element extensions to be written.</param>
  1018. <param name="version">
  1019. <attribution license="cc4" from="Microsoft" modified="false" />The syndication version the extensions are written in.</param>
  1020. </Docs>
  1021. </Member>
  1022. <Member MemberName="WriteElementExtensions">
  1023. <MemberSignature Language="C#" Value="protected void WriteElementExtensions (System.Xml.XmlWriter writer, System.ServiceModel.Syndication.SyndicationPerson person, string version);" />
  1024. <MemberSignature Language="ILAsm" Value=".method familyorassemblyhidebysig instance void WriteElementExtensions(class System.Xml.XmlWriter writer, class System.ServiceModel.Syndication.SyndicationPerson person, string version) cil managed" />
  1025. <MemberType>Method</MemberType>
  1026. <AssemblyInfo>
  1027. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  1028. </AssemblyInfo>
  1029. <ReturnValue>
  1030. <ReturnType>System.Void</ReturnType>
  1031. </ReturnValue>
  1032. <Parameters>
  1033. <Parameter Name="writer" Type="System.Xml.XmlWriter" />
  1034. <Parameter Name="person" Type="System.ServiceModel.Syndication.SyndicationPerson" />
  1035. <Parameter Name="version" Type="System.String" />
  1036. </Parameters>
  1037. <Docs>
  1038. <remarks>
  1039. <attribution license="cc4" from="Microsoft" modified="false" />
  1040. <para>To control how element extensions are written by the <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" />, derive a class from <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> and override the <see cref="M:System.ServiceModel.Syndication.SyndicationPerson.WriteElementExtensions(System.Xml.XmlWriter,System.String)" /> method.</para>
  1041. </remarks>
  1042. <summary>
  1043. <attribution license="cc4" from="Microsoft" modified="false" />
  1044. <para>Writes the element extensions in the <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> instance to the specified <see cref="T:System.Xml.XmlWriter" /> in the specified syndication version.</para>
  1045. </summary>
  1046. <param name="writer">
  1047. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlWriter" /> to write the extensions to.</param>
  1048. <param name="person">
  1049. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> instance that contains the element extensions to be written.</param>
  1050. <param name="version">
  1051. <attribution license="cc4" from="Microsoft" modified="false" />The syndication version the extensions are written in.</param>
  1052. </Docs>
  1053. </Member>
  1054. <Member MemberName="WriteTo">
  1055. <MemberSignature Language="C#" Value="public abstract void WriteTo (System.Xml.XmlWriter writer);" />
  1056. <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void WriteTo(class System.Xml.XmlWriter writer) cil managed" />
  1057. <MemberType>Method</MemberType>
  1058. <AssemblyInfo>
  1059. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  1060. </AssemblyInfo>
  1061. <ReturnValue>
  1062. <ReturnType>System.Void</ReturnType>
  1063. </ReturnValue>
  1064. <Parameters>
  1065. <Parameter Name="writer" Type="System.Xml.XmlWriter" />
  1066. </Parameters>
  1067. <Docs>
  1068. <remarks>To be added.</remarks>
  1069. <summary>
  1070. <attribution license="cc4" from="Microsoft" modified="false" />
  1071. <para>Writes the <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> to the specified <see cref="T:System.Xml.XmlWriter" /> instance.</para>
  1072. </summary>
  1073. <param name="writer">
  1074. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlWriter" /> to write the <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> to.</param>
  1075. </Docs>
  1076. </Member>
  1077. </Members>
  1078. </Type>