当前位置: 首页>>代码示例>>C#>>正文


C# XDocument.BuildDescendants方法代码示例

本文整理汇总了C#中System.Xml.Linq.XDocument.BuildDescendants方法的典型用法代码示例。如果您正苦于以下问题:C# XDocument.BuildDescendants方法的具体用法?C# XDocument.BuildDescendants怎么用?C# XDocument.BuildDescendants使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Xml.Linq.XDocument的用法示例。


在下文中一共展示了XDocument.BuildDescendants方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: GetFrameworkVersion

 void GetFrameworkVersion(XDocument xDocument)
 {
     FrameworkVersionAsString = xDocument.BuildDescendants("TargetFrameworkVersion")
         .Select(c => c.Value)
         .First();
     FrameworkVersionAsNumber = decimal.Parse(FrameworkVersionAsString.Remove(0, 1), CultureInfo.InvariantCulture);
 }
开发者ID:Z731,项目名称:NotifyPropertyWeaver,代码行数:7,代码来源:VersionReader.cs

示例2: GetIsSilverlight

 static bool GetIsSilverlight(XDocument xDocument)
 {
     var targetFrameworkIdentifier = xDocument.BuildDescendants("TargetFrameworkIdentifier")
         .Select(c => c.Value)
         .FirstOrDefault();
     return (string.Equals(targetFrameworkIdentifier, "Silverlight", StringComparison.OrdinalIgnoreCase));
 }
开发者ID:Z731,项目名称:NotifyPropertyWeaver,代码行数:7,代码来源:FrameworkTypeReader.cs

示例3: GetTargetFrameworkIdentifier

 void GetTargetFrameworkIdentifier(XDocument xDocument)
 {
     var targetFrameworkIdentifier = xDocument.BuildDescendants("TargetFrameworkIdentifier")
         .Select(c => c.Value)
         .FirstOrDefault();
     if (string.Equals(targetFrameworkIdentifier, "Silverlight", StringComparison.OrdinalIgnoreCase))
     {
         IsSilverlight = true;
     }
 }
开发者ID:Z731,项目名称:NotifyPropertyWeaver,代码行数:10,代码来源:VersionReader.cs

示例4: ContainsEmbedTask

 static bool ContainsEmbedTask(XDocument xDocument)
 {
     try
     {
         return xDocument.BuildDescendants("Costura.EmbedTask").Any();
     }
     catch (Exception exception)
     {
         throw new Exception("Could not check project for Costura.EmbedTask", exception);
     }
 }
开发者ID:sachhi,项目名称:costura,代码行数:11,代码来源:MenuConfigure.cs

示例5: Check

 public bool Check(XDocument xDocument)
 {
     try
     {
         if (xDocument.BuildDescendants("Fody.WeavingTask").Any())
         {
             return true;
         }
         return xDocument.BuildDescendants("Import")
             .Any(x =>
                      {
                          var xAttribute = x.Attribute("Project");
                          return xAttribute != null && xAttribute.Value.EndsWith("Fody.targets");
                      });
     }
     catch (Exception exception)
     {
         throw new Exception("Could not check project for weaving task.", exception);
     }
 }
开发者ID:CloudMetal,项目名称:Fody,代码行数:20,代码来源:ContainsFodyChecker.cs

示例6: ContainsWeavingTask

 static bool ContainsWeavingTask(XDocument xDocument)
 {
     try
     {
         return xDocument.BuildDescendants("NotifyPropertyWeaverMsBuildTask.WeavingTask").Any();
     }
     catch (Exception exception)
     {
         throw new Exception("Could not check project for weaving task.", exception);
     }
 }
开发者ID:Z731,项目名称:NotifyPropertyWeaver,代码行数:11,代码来源:MenuConfigure.cs

示例7: GetTargetFrameworkProfile

 static string GetTargetFrameworkProfile(XDocument xDocument)
 {
     return xDocument.BuildDescendants("TargetFrameworkProfile")
         .Select(c => c.Value)
         .FirstOrDefault();
 }
开发者ID:Z731,项目名称:NotifyPropertyWeaver,代码行数:6,代码来源:FrameworkTypeReader.cs

示例8: GetTargetFrameworkProfile

 void GetTargetFrameworkProfile(XDocument xDocument)
 {
     TargetFrameworkProfile = xDocument.BuildDescendants("TargetFrameworkProfile")
         .Select(c => c.Value)
         .FirstOrDefault();
 }
开发者ID:Z731,项目名称:NotifyPropertyWeaver,代码行数:6,代码来源:VersionReader.cs


注:本文中的System.Xml.Linq.XDocument.BuildDescendants方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。