Aracılığıyla paylaş


SyndicationPerson.AttributeExtensions Özellik

Tanım

için SyndicationPersonöznitelik uzantılarını alır.

public:
 property System::Collections::Generic::Dictionary<System::Xml::XmlQualifiedName ^, System::String ^> ^ AttributeExtensions { System::Collections::Generic::Dictionary<System::Xml::XmlQualifiedName ^, System::String ^> ^ get(); };
public System.Collections.Generic.Dictionary<System.Xml.XmlQualifiedName,string> AttributeExtensions { get; }
member this.AttributeExtensions : System.Collections.Generic.Dictionary<System.Xml.XmlQualifiedName, string>
Public ReadOnly Property AttributeExtensions As Dictionary(Of XmlQualifiedName, String)

Özellik Değeri

Öznitelik uzantıları koleksiyonunu içeren bir sözlük.

Örnekler

Aşağıdaki kod, bir örneğe öznitelik uzantısının SyndicationPerson nasıl ekleneceğini gösterir.

SyndicationPerson sp = new SyndicationPerson("jesper@contoso.com", "Jesper Aaberg", "http://Jesper/Aaberg");
sp.AttributeExtensions.Add(new XmlQualifiedName("myAttribute", ""), "someValue");
Dim sp As New SyndicationPerson("jesper@contoso.com", "Jesper Aaberg", "http://Jesper/Aaberg")
sp.AttributeExtensions.Add(New XmlQualifiedName("myAttribute", ""), "someValue")

Aşağıdaki XML, koleksiyonun AttributeExtensions Atom 1.0'a nasıl seri hale getirileceğini gösterir.

<author customAttribute="value">
  <name>Syed Abas</name>
  <uri>http://Syed/Abas</uri>
  <email>Syed.Abas@contoso.com</email>
</author>

Aşağıdaki XML koleksiyonun AttributeExtensions RSS 2.0'a nasıl seri hale getirileceğini gösterir.

<a10:author customAttribute="value">
  <a10:name>Syed Abas</a10:name>
  <a10:uri>http://Syed/Abas</a10:uri>
  <a10:email>Syed.Abas@contoso.com</a10:email>
</a10:author>

Açıklamalar

Dağıtım nesne modeli, örneğe SyndicationPerson özel öznitelikler eklemenize olanak tanır. Geçerli herhangi bir XML özniteliği/değeri ekleyebilirsiniz.

Atom 1.0'a seri hale getirildiğinde, herhangi bir özel öznitelik/değer veya <contributor> öğelerinde <author> öznitelik olarak yazılır. RSS 2.0'a seri hale getirildiğinde, herhangi bir özel öznitelik/değer , <a10:contributor>veya <a10:author> öğelerinde <managingEditor>öznitelik olarak yazılır.

Şunlara uygulanır