我正在尝试检查XML响应中是否存在用户。
当用户不存在时,响应如下:
<ipb></ipb>
对于我(在代码中)验证用户不存在的最佳方法是什么?我在考虑检查它是否没有任何子元素,但我有点困惑。
感谢您的帮助!
public void LoadUserById(string userID)
{
doc = XDocument.Load(String.Format("http://www.dreamincode.net/forums/xml.php?showuser={0}", userID));
if (doc.DescendantNodes().ToList().Count < 1)
{
userExists = false;
}
else
{
userExists = true;
}
}
答案 0 :(得分:7)
if (doc.Root.Elements().Any())
{
// User was found
}
或
XElement profile = doc.Root.Element("profile");
if (profile != null)
{
// User was found
}