Rss20ItemFormatter.CanRead(XmlReader) Method
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.
Verifies whether the specified XmlReader contains a valid RSS 2.0 syndication item.
public:
override bool CanRead(System::Xml::XmlReader ^ reader);
public override bool CanRead (System.Xml.XmlReader reader);
override this.CanRead : System.Xml.XmlReader -> bool
Public Overrides Function CanRead (reader As XmlReader) As Boolean
Parameters
Returns
A value that specifies if the XmlReader contains a valid RSS 2.0 syndication item.
Examples
The following code shows using the CanRead(XmlReader) method.
Rss20ItemFormatter itemFormatter = new Rss20ItemFormatter();
XmlReader rssReader = XmlReader.Create("http://Contoso/Feeds/MyFeed/Item");
if (itemFormatter.CanRead(rssReader))
{
itemFormatter.ReadFrom(rssReader);
rssReader.Close();
}
Applies to
Samarbeid med oss på GitHub
Du finner kilden for dette innholdet på GitHub. Der du også kan opprette og se gjennom problemer og pull-forespørsler. Hvis du vil ha mer informasjon, kan du se vår bidragsyterveiledning.