finishingmove
Programmer
- Apr 3, 2007
- 3
I'm writing a RSS reader in C# and I haven't figured out what would be the best way to validate if the document from the URL is really formated as RSS.
doc.LoadXml(thestuff);
if{
"validation goes here";
}
else{
error message
}
doc.LoadXml(thestuff);
if{
"validation goes here";
}
else{
error message
}