1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
|
<?xml version="1.0" encoding="utf-8"?>
<Type Name="SyndicationPerson" FullName="System.ServiceModel.Syndication.SyndicationPerson">
<TypeSignature Language="C#" Value="public class SyndicationPerson : System.ServiceModel.Syndication.ISyndicationElement" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit SyndicationPerson extends System.Object implements class System.ServiceModel.Syndication.ISyndicationElement" />
<AssemblyInfo>
<AssemblyName>System.ServiceModel</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces>
<Interface>
<InterfaceName>System.ServiceModel.Syndication.ISyndicationElement</InterfaceName>
</Interface>
</Interfaces>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>
<see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> objects can be added to the authors and contributors collections on <see cref="T:System.ServiceModel.Syndication.SyndicationFeed" /> and <see cref="T:System.ServiceModel.Syndication.SyndicationItem" /> objects. </para>
<para>When serialized to Atom 1.0, the <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> is written out as an <author> or <contributor> element.</para>
<para>When serialized to RSS 2.0, a <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> instance is written out as a <managingEditor>, <a10:author>, or <a10:contributor> element. How a <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> is serialized depends on the number of <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> objects added to a <see cref="T:System.ServiceModel.Syndication.SyndicationFeed" /> or <see cref="T:System.ServiceModel.Syndication.SyndicationItem" />, which collection the <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> instances are added to, and the value of the <paramref name="SerializeExtensionAsAtom" /> parameter to the <see cref="M:System.ServiceModel.Syndication.Rss20ItemFormatter.#ctor(System.ServiceModel.Syndication.SyndicationItem,System.Boolean)" /> constructor. If only one <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> is added to the <see cref="P:System.ServiceModel.Syndication.SyndicationFeed.Authors" /> (or <see cref="P:System.ServiceModel.Syndication.SyndicationItem.Authors" />) collection, the <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> is serialized to a <managingEditor> element. If more than one <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> is added to the <see cref="P:System.ServiceModel.Syndication.SyndicationFeed.Authors" /> (or <see cref="P:System.ServiceModel.Syndication.SyndicationItem.Authors" />) collection and <paramref name="SerializeExtensionsAsAtom" /> is set to true, all of the <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> objects are serialized to <a10:author> elements. If <paramref name="SerializeExtensionsAsAtom" /> is set to false, the <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> instances is not serialized. Any <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> instances added to the <see cref="P:System.ServiceModel.Syndication.SyndicationFeed.Contributors" /> (or <see cref="P:System.ServiceModel.Syndication.SyndicationItem.Contributors" />) collection are only serialized if <paramref name="SerializeExtensionsAsAtom" /> is set to true, in which case they are serialized to <a10:contributor> elements.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Represents an author or contributor of syndication content.</para>
</summary>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public SyndicationPerson ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor() cil managed" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters />
<Docs>
<remarks>To be added.</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Initializes a new <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> instance.</para>
</summary>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="protected SyndicationPerson (System.ServiceModel.Syndication.SyndicationPerson source);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig specialname rtspecialname instance void .ctor(class System.ServiceModel.Syndication.SyndicationPerson source) cil managed" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="source" Type="System.ServiceModel.Syndication.SyndicationPerson" />
</Parameters>
<Docs>
<remarks>To be added.</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Initializes a new instance of the <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> class with the specified instance.</para>
</summary>
<param name="source">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> instance to initialize the new instance.</param>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public SyndicationPerson (string email);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(string email) cil managed" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="email" Type="System.String" />
</Parameters>
<Docs>
<remarks>To be added.</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Initializes a new <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> instance with the specified e-mail address.</para>
</summary>
<param name="email">
<attribution license="cc4" from="Microsoft" modified="false" />The e-mail address of the person.</param>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public SyndicationPerson (string email, string name, string uri);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(string email, string name, string uri) cil managed" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="email" Type="System.String" />
<Parameter Name="name" Type="System.String" />
<Parameter Name="uri" Type="System.String" />
</Parameters>
<Docs>
<remarks>To be added.</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Initializes a new <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> instance with the specified e-mail address, name, and Uniform Resource Identifier (URI).</para>
</summary>
<param name="email">
<attribution license="cc4" from="Microsoft" modified="false" />The e-mail address of the person.</param>
<param name="name">
<attribution license="cc4" from="Microsoft" modified="false" />The name of the person.</param>
<param name="uri">
<attribution license="cc4" from="Microsoft" modified="false" />The URI of the person's Web page.</param>
</Docs>
</Member>
<Member MemberName="AttributeExtensions">
<MemberSignature Language="C#" Value="public System.Collections.Generic.Dictionary<System.Xml.XmlQualifiedName,string> AttributeExtensions { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Collections.Generic.Dictionary`2<class System.Xml.XmlQualifiedName, string> AttributeExtensions" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Collections.Generic.Dictionary<System.Xml.XmlQualifiedName,System.String></ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The Syndication object model allows you to add custom attributes to a <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> instance. You can add any valid XML attribute/value. </para>
<para>When serialized to Atom 1.0, any custom attribute/value is written as an attribute in the <author> or <contributor> elements. When serialized to RSS 2.0, any custom attribute/value is written as an attribute in the <managingEditor>, <a10:contributor>, or <a10:author> elements.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets the attribute extensions for the <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" />.</para>
</summary>
</Docs>
</Member>
<Member MemberName="Clone">
<MemberSignature Language="C#" Value="public virtual System.ServiceModel.Syndication.SyndicationPerson Clone ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.ServiceModel.Syndication.SyndicationPerson Clone() cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.ServiceModel.Syndication.SyndicationPerson</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<remarks>To be added.</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Creates a copy of the existing <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> instance.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>A new <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> instance.</para>
</returns>
</Docs>
</Member>
<Member MemberName="ElementExtensions">
<MemberSignature Language="C#" Value="public System.ServiceModel.Syndication.SyndicationElementExtensionCollection ElementExtensions { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.ServiceModel.Syndication.SyndicationElementExtensionCollection ElementExtensions" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.ServiceModel.Syndication.SyndicationElementExtensionCollection</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The Syndication object model allows you to add custom XML elements to a <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> instance. You can add any valid XML element as long as the element namespace and the containing namespace are different.</para>
<para>When serialized to Atom 1.0, any custom element is written as an XML element within an <author> or <contributor> element.</para>
<para>When serialized to RSS 2.0, any custom element is written as an XML element within the <managingEditor>, <a10:contributor>, or <a10:author> elements. </para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets the element extensions for the <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" />.</para>
</summary>
</Docs>
</Member>
<Member MemberName="Email">
<MemberSignature Language="C#" Value="public string Email { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance string Email" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>When serialized to Atom 1.0, the <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> property is written as an <email> element. The <email> element appears within an <author> or <contributor> element, which depends upon which collection (authors or contributors) the <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> is added to.</para>
<para>When serialized to RSS 2.0, this value is written as an <a10:email> element. The <a10:email> element appears within a <managingEditor>, <a10:author>, or <a10:contributor> element. If only one <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> is added to the authors collection, the <email> element is written within the <managingEditor> element. If more than one <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> is added to the authors collection, the <email> element is written within an <a10:author> element. If the <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> is added to the contributors collection, the <email> element is written within an <a10:contributor> element.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets and sets the e-mail address of the <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" />.</para>
</summary>
</Docs>
</Member>
<Member MemberName="Name">
<MemberSignature Language="C#" Value="public string Name { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance string Name" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>When serialized to Atom 1.0, the <see cref="P:System.ServiceModel.Syndication.SyndicationPerson.Name" /> property is written as a <name> element. The <name> element appears within an <author> or <contributor> element, which depends upon which collection (authors or contributors) the <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> is added to.</para>
<para>When serialized to RSS 2.0, the <see cref="P:System.ServiceModel.Syndication.SyndicationPerson.Name" /> property is written as an <a10:name> element. The <a10:name> element appears within a <managingEditor>, <a10:author>, or <a10:contributor> element. If only one <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> is added to the authors collection, the <a10:name> element is written within the <managingEditor> element. If more than one <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> is added to the authors collection, the <a10:name> element is written within the <a10:author> element. If the <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> is added to the contributors collection, the <a10:name> element is written within the <a10:contributor> element.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets and sets the name of the <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" />.</para>
</summary>
</Docs>
</Member>
<Member MemberName="TryParseAttribute">
<MemberSignature Language="C#" Value="protected virtual bool TryParseAttribute (string name, string ns, string value, string version);" />
<MemberSignature Language="ILAsm" Value=".method familyorassemblyhidebysig newslot virtual instance bool TryParseAttribute(string name, string ns, string value, string version) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
<Parameter Name="ns" Type="System.String" />
<Parameter Name="value" Type="System.String" />
<Parameter Name="version" Type="System.String" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Attribute extensions are custom attributes that are not defined by the Atom 1.0 or RSS 2.0 specifications. They are serialized as an attribute of the <author> or <contributor> element for Atom 1.0 or <managingEditor>, <a10:author>, or <a10:contributor> element for RSS 2.0. This method is an extension point that allows you to handle the deserialization of a custom attribute extension. To do this, you must derive a class from <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> and override this method. This method is called for all unrecognized attribute extensions.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Attempts to parse an attribute extension.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>A value that specifies whether the attribute extension was parsed successfully.</para>
</returns>
<param name="name">
<attribution license="cc4" from="Microsoft" modified="false" />The name of the element.</param>
<param name="ns">
<attribution license="cc4" from="Microsoft" modified="false" />The namespace of the element.</param>
<param name="value">
<attribution license="cc4" from="Microsoft" modified="false" />The attribute to parse.</param>
<param name="version">
<attribution license="cc4" from="Microsoft" modified="false" />The syndication version to use when parsing.</param>
</Docs>
</Member>
<Member MemberName="TryParseElement">
<MemberSignature Language="C#" Value="protected virtual bool TryParseElement (System.Xml.XmlReader reader, string version);" />
<MemberSignature Language="ILAsm" Value=".method familyorassemblyhidebysig newslot virtual instance bool TryParseElement(class System.Xml.XmlReader reader, string version) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="reader" Type="System.Xml.XmlReader" />
<Parameter Name="version" Type="System.String" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Element extensions are valid XML elements that are not specified in either the Atom 1.0 or RSS 2.0 specifications. You can add any valid XML element as an extension, provided its namespace is different from the enclosing namespace. This method is an extension point that allows you to handle the deserialization of a custom element extension. To do this, you must derive a class from <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> and override this method. This method is called for all unrecognized element extensions.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Attempts to parse an element extension.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>A value that specifies whether the element extension was parsed successfully.</para>
</returns>
<param name="reader">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlReader" /> to read from.</param>
<param name="version">
<attribution license="cc4" from="Microsoft" modified="false" />The syndication version to use while parsing.</param>
</Docs>
</Member>
<Member MemberName="Uri">
<MemberSignature Language="C#" Value="public string Uri { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance string Uri" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>When serialized to Atom 1.0, the <see cref="P:System.ServiceModel.Syndication.SyndicationPerson.Uri" /> property is written as a <uri> element. The <uri> element appears within an <author> or <contributor> element, which depends upon which collection (authors or contributors) the <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> is added to.</para>
<para>When serialized to RSS 2.0, the <see cref="P:System.ServiceModel.Syndication.SyndicationPerson.Uri" /> property is written as an <a10:uri> element. The <a10:uri> element appears within a <managingEditor>, <a10:author>, or <a10:contributor> element. If only one <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> is added to the authors collection, the <a10:uri> element is written within the <managingEditor> element. If more than one <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> is added to the authors collection, the <a10:uri> element is written within the <a10:author> element. If the <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> is added to the contributors collection, the <a10:uri> element is written within the <a10:contributor> element.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets and sets the URI of the <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" />.</para>
</summary>
</Docs>
</Member>
<Member MemberName="WriteAttributeExtensions">
<MemberSignature Language="C#" Value="protected virtual void WriteAttributeExtensions (System.Xml.XmlWriter writer, string version);" />
<MemberSignature Language="ILAsm" Value=".method familyorassemblyhidebysig newslot virtual instance void WriteAttributeExtensions(class System.Xml.XmlWriter writer, string version) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="writer" Type="System.Xml.XmlWriter" />
<Parameter Name="version" Type="System.String" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Attribute extensions are custom attributes that are not defined by the Atom 1.0 or RSS 2.0 specifications. They are serialized as an attribute of the <author> or <contributor> element for Atom 1.0 or <managingEditor>, <a10:author>, or <a10:contributor> element for RSS 2.0. This method is an extension point that allows you to handle the serialization of custom attribute extensions. To do this, you must derive a class from <see cref="T:System.ServiceModel.Syndication.SyndicationLink" /> and override this method. This method is called for all unrecognized attribute extensions.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Writes the attribute extensions to the specified <see cref="T:System.Xml.XmlWriter" /> using the specified syndication version.</para>
</summary>
<param name="writer">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlReader" /> to write to.</param>
<param name="version">
<attribution license="cc4" from="Microsoft" modified="false" />The syndication version to use while writing.</param>
</Docs>
</Member>
<Member MemberName="WriteElementExtensions">
<MemberSignature Language="C#" Value="protected virtual void WriteElementExtensions (System.Xml.XmlWriter writer, string version);" />
<MemberSignature Language="ILAsm" Value=".method familyorassemblyhidebysig newslot virtual instance void WriteElementExtensions(class System.Xml.XmlWriter writer, string version) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="writer" Type="System.Xml.XmlWriter" />
<Parameter Name="version" Type="System.String" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Element extensions are valid XML elements that are not specified in either the Atom 1.0 or RSS 2.0 specifications. You can add any valid XML element as an extension, provided its namespace is different from the enclosing namespace. This method is an extension point that allows you to handle the serialization of custom element extensions. To do this, you must derive a class from <see cref="T:System.ServiceModel.Syndication.SyndicationPerson" /> and override this method. This method is called for all unrecognized element extensions.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Writes the element extensions to the specified <see cref="T:System.Xml.XmlWriter" /> using the specified syndication version.</para>
</summary>
<param name="writer">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlReader" /> to write to.</param>
<param name="version">
<attribution license="cc4" from="Microsoft" modified="false" />The syndication version to use while writing.</param>
</Docs>
</Member>
</Members>
</Type>
|