Atom10ItemFormatter Конструкторы
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Создает новый экземпляр класса Atom10ItemFormatter.
Перегрузки
Atom10ItemFormatter() |
Создает новый экземпляр класса Atom10ItemFormatter. |
Atom10ItemFormatter(SyndicationItem) |
Создает новый экземпляр класса Atom10ItemFormatter с указанным SyndicationItem. |
Atom10ItemFormatter(Type) |
Инициализирует новый экземпляр класса Atom10ItemFormatter. |
Atom10ItemFormatter()
- Исходный код:
- Atom10ItemFormatter.cs
- Исходный код:
- Atom10ItemFormatter.cs
- Исходный код:
- Atom10ItemFormatter.cs
- Исходный код:
- Atom10ItemFormatter.cs
Создает новый экземпляр класса Atom10ItemFormatter.
public:
Atom10ItemFormatter();
public Atom10ItemFormatter ();
Public Sub New ()
Применяется к
Atom10ItemFormatter(SyndicationItem)
- Исходный код:
- Atom10ItemFormatter.cs
- Исходный код:
- Atom10ItemFormatter.cs
- Исходный код:
- Atom10ItemFormatter.cs
- Исходный код:
- Atom10ItemFormatter.cs
Создает новый экземпляр класса Atom10ItemFormatter с указанным 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)
Параметры
- itemToWrite
- SyndicationItem
Экземпляр SyndicationItem для сериализации.
Примеры
В следующем примере показано, как вызвать этот конструктор.
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)
Применяется к
Atom10ItemFormatter(Type)
- Исходный код:
- Atom10ItemFormatter.cs
- Исходный код:
- Atom10ItemFormatter.cs
- Исходный код:
- Atom10ItemFormatter.cs
- Исходный код:
- Atom10ItemFormatter.cs
Инициализирует новый экземпляр класса 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)
Параметры
- itemTypeToCreate
- Type
Производный SyndicationItem экземпляр, связанный Rss20ItemFormatterс .
Примеры
В следующем примере кода показано, как использовать этот конструктор.
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()
Комментарии
Этот конструктор используется, чтобы задать класс, производный от SyndicationItem, для создания экземпляра при чтении элемента синдикации.