SyndicationFeedFormatter.TryParseContent Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Pokusí se analyzovat obsah položky syndikace pomocí zadané SyndicationItem instance.
protected public:
static bool TryParseContent(System::Xml::XmlReader ^ reader, System::ServiceModel::Syndication::SyndicationItem ^ item, System::String ^ contentType, System::String ^ version, [Runtime::InteropServices::Out] System::ServiceModel::Syndication::SyndicationContent ^ % content);
protected internal static bool TryParseContent (System.Xml.XmlReader reader, System.ServiceModel.Syndication.SyndicationItem item, string contentType, string version, out System.ServiceModel.Syndication.SyndicationContent content);
static member TryParseContent : System.Xml.XmlReader * System.ServiceModel.Syndication.SyndicationItem * string * string * SyndicationContent -> bool
Protected Friend Shared Function TryParseContent (reader As XmlReader, item As SyndicationItem, contentType As String, version As String, ByRef content As SyndicationContent) As Boolean
Parametry
- item
- SyndicationItem
Instance SyndicationItem , která se má použít.
- contentType
- String
Typ obsahu.
- version
- String
Syndikační verze, která se má použít při analýze.
- content
- SyndicationContent
Obsah, který se má analyzovat.
Návraty
true
pokud se obsah úspěšně parsoval; jinak false
.
Poznámky
Pokud chcete řídit, jak se obsah syndikace parsuje, odvozujte z SyndicationItem nich vlastní třídu a přepište
TryParseContent(XmlReader, String, String, SyndicationContent) Metoda.