SyndicationItem.Authors Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Dağıtım öğesinin yazarlarını alır.
public:
property System::Collections::ObjectModel::Collection<System::ServiceModel::Syndication::SyndicationPerson ^> ^ Authors { System::Collections::ObjectModel::Collection<System::ServiceModel::Syndication::SyndicationPerson ^> ^ get(); };
public System.Collections.ObjectModel.Collection<System.ServiceModel.Syndication.SyndicationPerson> Authors { get; }
member this.Authors : System.Collections.ObjectModel.Collection<System.ServiceModel.Syndication.SyndicationPerson>
Public ReadOnly Property Authors As Collection(Of SyndicationPerson)
Özellik Değeri
Dağıtım öğesinin SyndicationPerson yazarlarını temsil eden nesne koleksiyonu.
Örnekler
Aşağıdaki kod, bir yazarın koleksiyonuna AuthorsSyndicationItemnasıl ekleneceğini gösterir.
SyndicationItem item = new SyndicationItem("Item Title", "Item Content", new Uri("http://Item/Alternate/Link"));
item.Authors.Add(new SyndicationPerson("jesper@contoso.com", "Jesper Aaberg", "http://contoso/jesper"));
Dim item As New SyndicationItem("Item Title", "Item Content", New Uri("http:' Item/Alternate/Link"))
item.Authors.Add(New SyndicationPerson("jesper@contoso.com", "Jesper Aaberg", "http:' contoso/jesper"))
Aşağıdaki XML, öncekinin SyndicationItem Atom 1.0'a nasıl seri hale getirileceğini gösterir.
<entry>
<id>Item ID</id>
<title type="text">My Item</title>
<updated>2007-03-16T23:00:59Z</updated>
<author>
<name>Lene Aaling</name>
<uri>http://contoso/Lene</uri>
<email>lene@contoso.com</email>
</author>
<link rel="alternate" href="http://someserver/MyItem" />
<link rel="alternate" type="text/html" title="Alternate Link" length="1000" href="http://otherserver/Item" />
<content type="text">This is some content</content>
</entry>
Aşağıdaki XML, öncekinin SyndicationItem RSS 2.0'a nasıl seri hale getirileceğini gösterir.
<item>
<guid isPermaLink="false">Item ID</guid>
<link>http://someserver/MyItem</link>
<author>someone@mycompany.com</author>
<title>My Item</title>
<description>This is some content</description>
<a10:link rel="alternate" type="text/html" title="Alternate Link" length="1000" href="http://otherserver/Item" />
<a10:updated>2007-03-16T23:00:59Z</a10:updated>
</item>
Açıklamalar
Atom 1.0'a seri hale getirildiğinde, koleksiyondaki Authors her SyndicationPerson biri için bir <author>
öğe yazılır.
RSS 2.0'a seri hale getirildiğinde. bir <managingEditor>
öğe, koleksiyonun Authors yalnızca bir SyndicationPersonöğesi varsa yazılır, aksi takdirde koleksiyondaki Authors her SyndicationPerson biri için bir <a10:author>
öğe yazılır.