Atom10ItemFormatter<TSyndicationItem> Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a new instance of the Atom10ItemFormatter<TSyndicationItem> class.
Overloads
Atom10ItemFormatter<TSyndicationItem>() |
Creates a new instance of the Atom10ItemFormatter<TSyndicationItem> class. |
Atom10ItemFormatter<TSyndicationItem>(TSyndicationItem) |
Creates a new instance of the Atom10ItemFormatter<TSyndicationItem> class with the specified SyndicationItem-derived instance. |
Atom10ItemFormatter<TSyndicationItem>()
- Source:
- Atom10ItemFormatter.cs
- Source:
- Atom10ItemFormatter.cs
- Source:
- Atom10ItemFormatter.cs
- Source:
- Atom10ItemFormatter.cs
Creates a new instance of the Atom10ItemFormatter<TSyndicationItem> class.
public:
Atom10ItemFormatter();
public Atom10ItemFormatter ();
Public Sub New ()
Applies to
Atom10ItemFormatter<TSyndicationItem>(TSyndicationItem)
- Source:
- Atom10ItemFormatter.cs
- Source:
- Atom10ItemFormatter.cs
- Source:
- Atom10ItemFormatter.cs
- Source:
- Atom10ItemFormatter.cs
Creates a new instance of the Atom10ItemFormatter<TSyndicationItem> class with the specified SyndicationItem-derived instance.
public:
Atom10ItemFormatter(TSyndicationItem itemToWrite);
public Atom10ItemFormatter (TSyndicationItem itemToWrite);
new System.ServiceModel.Syndication.Atom10ItemFormatter<'SyndicationItem (requires 'SyndicationItem :> System.ServiceModel.Syndication.SyndicationItem and 'SyndicationItem : (new : unit -> 'SyndicationItem))> : 'SyndicationItem -> System.ServiceModel.Syndication.Atom10ItemFormatter<'SyndicationItem (requires 'SyndicationItem :> System.ServiceModel.Syndication.SyndicationItem and 'SyndicationItem : (new : unit -> 'SyndicationItem))>
Public Sub New (itemToWrite As TSyndicationItem)
Parameters
- itemToWrite
- TSyndicationItem
The SyndicationItem to serialize.
Examples
The following example shows how to call this constructor.
MySyndicationItem item = new MySyndicationItem("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<MySyndicationItem> formatter = new Atom10ItemFormatter<MySyndicationItem>(item);
Dim item As MySyndicationItem = New MySyndicationItem("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(Of MySyndicationItem) = New Atom10ItemFormatter(Of MySyndicationItem)(item)