Atom10ItemFormatter Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Crée une instance de la classe Atom10ItemFormatter.
Surcharges
Atom10ItemFormatter() |
Crée une instance de la classe Atom10ItemFormatter. |
Atom10ItemFormatter(SyndicationItem) |
Crée une nouvelle instance de la classe Atom10ItemFormatter avec le SyndicationItem spécifié. |
Atom10ItemFormatter(Type) |
Initialise une nouvelle instance de la classe Atom10ItemFormatter. |
Atom10ItemFormatter()
- Source:
- Atom10ItemFormatter.cs
- Source:
- Atom10ItemFormatter.cs
- Source:
- Atom10ItemFormatter.cs
- Source:
- Atom10ItemFormatter.cs
Crée une instance de la classe Atom10ItemFormatter.
public:
Atom10ItemFormatter();
public Atom10ItemFormatter ();
Public Sub New ()
S’applique à
Atom10ItemFormatter(SyndicationItem)
- Source:
- Atom10ItemFormatter.cs
- Source:
- Atom10ItemFormatter.cs
- Source:
- Atom10ItemFormatter.cs
- Source:
- Atom10ItemFormatter.cs
Crée une nouvelle instance de la classe Atom10ItemFormatter avec le SyndicationItem spécifié.
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)
Paramètres
- itemToWrite
- SyndicationItem
SyndicationItem à sérialiser.
Exemples
L'exemple suivant montre comment appeler ce constructeur.
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)
S’applique à
Atom10ItemFormatter(Type)
- Source:
- Atom10ItemFormatter.cs
- Source:
- Atom10ItemFormatter.cs
- Source:
- Atom10ItemFormatter.cs
- Source:
- Atom10ItemFormatter.cs
Initialise une nouvelle instance de la classe 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)
Paramètres
- itemTypeToCreate
- Type
Le SyndicationItem instance dérivé à associer à .Rss20ItemFormatter
Exemples
Le code suivant montre comment utiliser ce constructeur.
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()
Remarques
Utilisez ce constructeur pour indiquer une classe dérivée de SyndicationItem à instancier lorsqu'un élément de syndication est lu.