SyndicationItem.ElementExtensions Eigenschap

Definitie

Hiermee haalt u de elementextensies op die zijn opgenomen in het syndicatie-item.

public:
 property System::ServiceModel::Syndication::SyndicationElementExtensionCollection ^ ElementExtensions { System::ServiceModel::Syndication::SyndicationElementExtensionCollection ^ get(); };
public System.ServiceModel.Syndication.SyndicationElementExtensionCollection ElementExtensions { get; }
member this.ElementExtensions : System.ServiceModel.Syndication.SyndicationElementExtensionCollection
Public ReadOnly Property ElementExtensions As SyndicationElementExtensionCollection

Waarde van eigenschap

Een SyndicationElementExtensionCollection met de elementextensies.

Voorbeelden

De volgende code laat zien hoe u elementextensies toevoegt aan een SyndicationItem exemplaar.

SyndicationItem item = new SyndicationItem();

// Add several different types of element extensions
item.ElementExtensions.Add("simpleString", "", "hello, world!");
item.ElementExtensions.Add("simpleString", "", "another simple string");

// DataContractExtension is a user-defined type marked with the DataContractAttribute
item.ElementExtensions.Add(new DataContractExtension() { Key = "X", Value = 4 });

// XmlSerializerExtension is a user-defined type that defines a ToString() method
item.ElementExtensions.Add(new XmlSerializerExtension() { Key = "Y", Value = 8 }, new XmlSerializer(typeof(XmlSerializerExtension)));

item.ElementExtensions.Add(new XElement("xElementExtension", new XElement("Key", new XAttribute("attr1", "someValue"), "Z"),
    new XElement("Value", new XAttribute("attr1", "someValue"), "15")).CreateReader());
Dim item As New SyndicationItem()

' Add several different types of element extensions
item.ElementExtensions.Add("simpleString", "", "hello, world!")
item.ElementExtensions.Add("simpleString", "", "another simple string")

' DataContractExtension is a user-defined type marked with the DataContractAttribute
item.ElementExtensions.Add(New DataContractExtension With {.Key = "X", .Value = 4})

' XmlSerializerExtension is a user-defined type that defines a ToString() method
item.ElementExtensions.Add(New XmlSerializerExtension With {.Key = "Y", .Value = 8}, New XmlSerializer(GetType(XmlSerializerExtension)))

item.ElementExtensions.Add(New XElement("xElementExtension", New XElement("Key", New XAttribute("attr1", "someValue"), "Z"), _
        New XElement("Value", New XAttribute("attr1", "someValue"), "15")).CreateReader())

Opmerkingen

Elementextensies zijn geldige XML-elementen die niet zijn opgegeven in de specificaties van Atom 1.0 of RSS 2.0. Elk geldig XML-element kan worden toegevoegd als een extensie mits de naamruimte verschilt van de omsluitnaamruimte. Wanneer ze worden geserialiseerd, worden extensies geschreven zoals elk ander XML-element.

<mg:MyElement xmlns:mg="http://myserver/elements" />

Zie het voorbeeld vanLoosely-Typed Extensions voor een volledig voorbeeld dat laat zien hoe u elementextensies toevoegt.

Van toepassing op