Atom10ItemFormatter Konstruktoren

Definition

Erstellt eine neue Instanz der Atom10ItemFormatter-Klasse.

Überlädt

Atom10ItemFormatter()

Erstellt eine neue Instanz der Atom10ItemFormatter-Klasse.

Atom10ItemFormatter(SyndicationItem)

Erstellt eine neue Instanz der Klasse Atom10ItemFormatter mit dem angegebenen SyndicationItem.

Atom10ItemFormatter(Type)

Initialisiert eine neue Instanz der Atom10ItemFormatter-Klasse.

Atom10ItemFormatter()

Quelle:
Atom10ItemFormatter.cs
Quelle:
Atom10ItemFormatter.cs
Quelle:
Atom10ItemFormatter.cs
Quelle:
Atom10ItemFormatter.cs

Erstellt eine neue Instanz der Atom10ItemFormatter-Klasse.

public:
 Atom10ItemFormatter();
public Atom10ItemFormatter ();
Public Sub New ()

Gilt für:

Atom10ItemFormatter(SyndicationItem)

Quelle:
Atom10ItemFormatter.cs
Quelle:
Atom10ItemFormatter.cs
Quelle:
Atom10ItemFormatter.cs
Quelle:
Atom10ItemFormatter.cs

Erstellt eine neue Instanz der Klasse Atom10ItemFormatter mit dem angegebenen SyndicationItem.

public:
 Atom10ItemFormatter(System::ServiceModel::Syndication::SyndicationItem ^ itemToWrite);
public Atom10ItemFormatter (System.ServiceModel.Syndication.SyndicationItem itemToWrite);
new System.ServiceModel.Syndication.Atom10ItemFormatter : System.ServiceModel.Syndication.SyndicationItem -> System.ServiceModel.Syndication.Atom10ItemFormatter
Public Sub New (itemToWrite As SyndicationItem)

Parameter

itemToWrite
SyndicationItem

Das SyndicationItem, das serialisiert werden soll.

Beispiele

Im folgenden Beispiel wird der Aufruf dieses Konstruktors veranschaulicht.

SyndicationItem item = new SyndicationItem("Test Item", "This is the content for Test Item", new Uri("http://localhost/ItemOne"), "TestItemID", DateTime.Now);

item.Links.Add(new SyndicationLink(new Uri("http://someuri"), "alternate", "MyItemLink", "text/html", 100));
item.PublishDate = new DateTime(1968, 2, 23);
item.LastUpdatedTime = DateTime.Today;
item.SourceFeed = new SyndicationFeed();
item.Summary = new TextSyndicationContent("This the item summary");

XmlWriter atomWriter = XmlWriter.Create("AtomItem.xml");
Atom10ItemFormatter formatter = new Atom10ItemFormatter(item);
Dim item As SyndicationItem = New SyndicationItem("Test Item", "This is the content for Test Item", New Uri("http:'localhost/ItemOne"), "TestItemID", DateTime.Now)

item.Links.Add(New SyndicationLink(New Uri("http:'someuri"), "alternate", "MyItemLink", "text/html", 100))
item.PublishDate = New DateTime(1968, 2, 23)
item.LastUpdatedTime = DateTime.Today
item.SourceFeed = New SyndicationFeed()
item.Summary = New TextSyndicationContent("This the item summary")

Dim atomWriter As XmlWriter = XmlWriter.Create("AtomItem.xml")
Dim formatter As Atom10ItemFormatter = New Atom10ItemFormatter(item)

Gilt für:

Atom10ItemFormatter(Type)

Quelle:
Atom10ItemFormatter.cs
Quelle:
Atom10ItemFormatter.cs
Quelle:
Atom10ItemFormatter.cs
Quelle:
Atom10ItemFormatter.cs

Initialisiert eine neue Instanz der Atom10ItemFormatter-Klasse.

public:
 Atom10ItemFormatter(Type ^ itemTypeToCreate);
public Atom10ItemFormatter (Type itemTypeToCreate);
new System.ServiceModel.Syndication.Atom10ItemFormatter : Type -> System.ServiceModel.Syndication.Atom10ItemFormatter
Public Sub New (itemTypeToCreate As Type)

Parameter

itemTypeToCreate
Type

Der SyndicationItem abgeleitete instance, der zugeordnet werden Rss20ItemFormattersoll.

Beispiele

Das folgende Codebeispiel zeigt, wie dieser Konstruktor verwendet wird.

Atom10ItemFormatter myItemAtomFormatter = new Atom10ItemFormatter(typeof(MySyndicationItem));
XmlReader atomReader = XmlReader.Create("http://Contoso/Feeds/MyFeed/Items");
myItemAtomFormatter.ReadFrom(atomReader);
atomReader.Close();
Dim myItemAtomFormatter As New Atom10ItemFormatter(GetType(MySyndicationItem))
Dim atomReader As XmlReader = XmlReader.Create("http://Contoso/Feeds/MyFeed/Items")
myItemAtomFormatter.ReadFrom(atomReader)
atomReader.Close()

Hinweise

Verwenden Sie diesen Konstruktor zur Angabe einer von SyndicationItem abgeleiteten Klasse für die Instanziierung, wenn ein Syndication-Element eingelesen wird.

Gilt für: