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
Dolgozzon együtt velünk a GitHubon
A tartalom forrása a GitHubon található, ahol létrehozhat és áttekinthet problémákat és lekéréses kérelmeket is. További információért tekintse meg a közreműködői útmutatónkat.