當前位置: 首頁>>代碼示例>>C#>>正文


C# XContainer.XPathSelectElement方法代碼示例

本文整理匯總了C#中System.Xml.Linq.XContainer.XPathSelectElement方法的典型用法代碼示例。如果您正苦於以下問題:C# XContainer.XPathSelectElement方法的具體用法?C# XContainer.XPathSelectElement怎麽用?C# XContainer.XPathSelectElement使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在System.Xml.Linq.XContainer的用法示例。


在下文中一共展示了XContainer.XPathSelectElement方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: Plug

        //
        // Plugs Doxy docs into ECMA XML docs.   If the brief data is available,
        // it uses that.   Otherwise it picks the first node from the detailed description.
        //
        // @target is an ECMA XML document to plug data into
        // @summaryPath is the xpath expression to fetch the summary node
        // @remarksPath is the xpath expression to fetch the remarks node
        // @brief is the Doxy Brief description node
        // @detailed is the Doxy detailed description
        //
        IEnumerable<XElement> Plug(XContainer target, string summaryPath, string remarksPath, XElement brief, XElement detailed)
        {
            var ret = TransformDoxy (detailed);
            TransformDoxy (brief);
            var elements = detailed.Elements ();
            var sum = target.XPathSelectElement (summaryPath);
            var rem = target.XPathSelectElement (remarksPath);

            if (brief.Value.ToString ().Trim () != "")
                sum.SetValue (brief.Elements ());
            else {
                var first = elements.FirstOrDefault ();
                if (first != null) {
                    sum.SetValue (first);
                }
            }
            rem.SetValue (elements);
            return ret;
        }
開發者ID:migueldeicaza,項目名稱:doxytoecma,代碼行數:29,代碼來源:Main.cs

示例2: GetOrCreateElement

        private static XElement GetOrCreateElement(XContainer root, string name)
        {
            var element = root.XPathSelectElement(name);

            if (element == null)
            {
                element = new XElement(name);
                root.Add(element);
            }

            return element;
        }
開發者ID:uQr,項目名稱:kudu,代碼行數:12,代碼來源:BaseJobRunner.cs

示例3: GetElementByXPath

 private XElement GetElementByXPath(XContainer element, string xpath, ILog logger = null)
 {
     var node = element.XPathSelectElement(xpath);
     if (node == null)
     {
         BuildStatusMessage = string.Format(CultureInfo.CurrentCulture, "Could not find node '{0}' in the project xml", xpath);
         if (logger != null) logger.Debug(BuildStatusMessage + Environment.NewLine + element);
     }
     return node;
 }
開發者ID:mightymuke,項目名稱:SirenOfShame,代碼行數:10,代碼來源:HudsonBuildStatus.cs


注:本文中的System.Xml.Linq.XContainer.XPathSelectElement方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。