如何检查XDocument是否至少有一个孩子?

时间:2010-07-05 00:56:35

标签: c# .net xml linq-to-xml

我正在尝试检查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;
        }
    }

1 个答案:

答案 0 :(得分:7)

if (doc.Root.Elements().Any())
{
    // User was found
}

XElement profile = doc.Root.Element("profile");
if (profile != null)
{
    // User was found
}