Atom10ItemFormatter Konstruktory
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Tworzy nowe wystąpienie klasy Atom10ItemFormatter.
Przeciążenia
Atom10ItemFormatter() |
Tworzy nowe wystąpienie klasy Atom10ItemFormatter. |
Atom10ItemFormatter(SyndicationItem) |
Tworzy nowe wystąpienie Atom10ItemFormatter klasy o określonej wartości SyndicationItem. |
Atom10ItemFormatter(Type) |
Inicjuje nowe wystąpienie klasy Atom10ItemFormatter. |
Atom10ItemFormatter()
- Źródło:
- Atom10ItemFormatter.cs
- Źródło:
- Atom10ItemFormatter.cs
- Źródło:
- Atom10ItemFormatter.cs
- Źródło:
- Atom10ItemFormatter.cs
Tworzy nowe wystąpienie klasy Atom10ItemFormatter.
public:
Atom10ItemFormatter();
public Atom10ItemFormatter ();
Public Sub New ()
Dotyczy
Atom10ItemFormatter(SyndicationItem)
- Źródło:
- Atom10ItemFormatter.cs
- Źródło:
- Atom10ItemFormatter.cs
- Źródło:
- Atom10ItemFormatter.cs
- Źródło:
- Atom10ItemFormatter.cs
Tworzy nowe wystąpienie Atom10ItemFormatter klasy o określonej wartości 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)
Parametry
- itemToWrite
- SyndicationItem
Element SyndicationItem do serializacji.
Przykłady
W poniższym przykładzie pokazano, jak wywołać ten konstruktor.
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)
Dotyczy
Atom10ItemFormatter(Type)
- Źródło:
- Atom10ItemFormatter.cs
- Źródło:
- Atom10ItemFormatter.cs
- Źródło:
- Atom10ItemFormatter.cs
- Źródło:
- Atom10ItemFormatter.cs
Inicjuje nowe wystąpienie klasy Atom10ItemFormatter.
public:
Atom10ItemFormatter(Type ^ itemTypeToCreate);
public Atom10ItemFormatter (Type itemTypeToCreate);
new System.ServiceModel.Syndication.Atom10ItemFormatter : Type -> System.ServiceModel.Syndication.Atom10ItemFormatter
Public Sub New (itemTypeToCreate As Type)
Parametry
- itemTypeToCreate
- Type
Wystąpienie SyndicationItem pochodne do skojarzenia z elementem Rss20ItemFormatter.
Przykłady
Poniższy kod pokazuje, jak używać tego konstruktora.
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()
Uwagi
Użyj tego konstruktora, aby określić klasę pochodzącą z SyndicationItem metody , aby utworzyć wystąpienie podczas odczytywania elementu syndykacji.