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


C# Scope.SetParent方法代码示例

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


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

示例1: PrepareDataSource

 private IScope PrepareDataSource(XElement source, IScope parent) {
     var result = new Scope();
     if (null != parent) {
         result.SetParent(parent);
     }
     foreach (var a in source.Attributes()) {
         result.Set(a.Name.LocalName, a.Value);
     }
     result.Set("this", source);
     return result;
 }
开发者ID:Qorpent,项目名称:qorpent.sys,代码行数:11,代码来源:XmlInterpolation.cs

示例2: ProcessRepeat

        private XElement[] ProcessRepeat(XElement source, IScope datasource) {
            var a = GetDataSource(source, datasource);
            if (0 == a.Length) {
                return null;
            }


            var result = new List<XElement>();

            var scope = source.Attr("xi-scope");
            var scope2 = "";

            var expand = source.Attr("xi-expand").ToBool();
            var rep = source.Attr("xi-repeat");
            if (rep.Contains(" in ")) {
                scope2 = Regex.Match(rep, @"^([\s\S]+?)\s+in").Groups[1].Value;
                if (scope2.EndsWith("+")) {
                    expand = true;
                    scope2 = scope2.Substring(0, scope2.Length - 1);
                }
            }
            
            var i = 0;

            foreach (var o in a) {
                var dict = o.ToDict();
                var cfg = new Scope();
                if (!string.IsNullOrWhiteSpace(scope)) {
                    cfg[scope] = dict;
                }
                if (!string.IsNullOrWhiteSpace(scope2)) {
                    cfg[scope2] = dict;
                }
                if (expand) {
                    foreach (var p in dict) {
                        cfg[p.Key] = p.Value;
                    }
                }

                var clone = new XElement(source);
                cfg.Set("this", clone);
                cfg.Set("parent", source);
                cfg.SetParent(datasource);
                cfg.Set("_idx", i);
                cfg.Set("_num", i + 1);
                cfg.Set("_i", dict);
                if (!MatchCondition(clone, cfg, "where")) {
                    continue;
                }

                clone.SetAttributeValue("xi-repeat", null);
                clone.SetAttributeValue("xi-scope", null);
                clone.SetAttributeValue("xi-expand", null);
                clone = Interpolate(clone, cfg);
                if (null != clone) {
                    if (clone.Attr("xi-body").ToBool()) {
                        foreach (var element in clone.Elements()) {
                            result.Add(element);
                        }
                    }
                    else {
                        result.Add(clone);
                    }
                }
                i++;
            }
            return result.ToArray();
        }
开发者ID:Qorpent,项目名称:qorpent.sys,代码行数:68,代码来源:XmlInterpolation.cs


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