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


C# SetIndexBinder.FallbackSetIndex方法代码示例

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


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

示例1: BindSetIndex

 public override DynamicMetaObject BindSetIndex(SetIndexBinder binder, DynamicMetaObject[] indexes, DynamicMetaObject value) {
     ContractUtils.RequiresNotNull(binder, "binder");
     return binder.FallbackSetIndex(UnwrapSelf(), indexes, value);
 }
开发者ID:jschementi,项目名称:iron,代码行数:4,代码来源:ComFallbackMetaObject.cs

示例2: BindSetIndex

 /// <summary>
 /// Performs the binding of the dynamic set index operation.
 /// </summary>
 /// <param name="binder">An instance of the <see cref="SetIndexBinder"/> that represents the details of the dynamic operation.</param>
 /// <param name="indexes">An array of <see cref="DynamicMetaObject"/> instances - indexes for the set index operation.</param>
 /// <param name="value">The <see cref="DynamicMetaObject"/> representing the value for the set index operation.</param>
 /// <returns>The new <see cref="DynamicMetaObject"/> representing the result of the binding.</returns>
 public virtual DynamicMetaObject BindSetIndex(SetIndexBinder binder, DynamicMetaObject[] indexes, DynamicMetaObject value) {
     ContractUtils.RequiresNotNull(binder, "binder");
     return binder.FallbackSetIndex(this, indexes, value);
 }
开发者ID:joshholmes,项目名称:ironruby,代码行数:11,代码来源:DynamicMetaObject.cs

示例3: BindSetIndex

            public override DynamicMetaObject BindSetIndex(SetIndexBinder binder, DynamicMetaObject[] indexes, DynamicMetaObject value) {
                if (IsOverridden("TrySetIndex")) {
                    return CallMethodReturnLast("TrySetIndex", binder, DynamicMetaObject.GetExpressions(indexes), value.Expression, (e) => binder.FallbackSetIndex(this, indexes, value, e));
                }

                return base.BindSetIndex(binder, indexes, value);
            }
开发者ID:iskiselev,项目名称:JSIL.NetFramework,代码行数:7,代码来源:DynamicObject.cs

示例4: BindSetIndex

            public override DynamicMetaObject BindSetIndex(SetIndexBinder binder, DynamicMetaObject[] indexes, DynamicMetaObject value)
            {
                var index = _type.GetIndex(binder.CallInfo.ArgumentCount);
                if (index != null && index.Getters != null)
                {
                    var setCall = TotemProtocol.ResolveOverload(
                        binder,
                        _type,
                        binder.CallInfo,
                        _type.Name + ".<set_index>",
                        index.Setters,
                        this,
                        ArrayUtils.Append(indexes, value),
                        nonCountingArgs: 1
                    );
                    return new DynamicMetaObject(
                        Expression.Block(
                            setCall.Expression,
                            value.Expression
                        ),
                        setCall.Restrictions
                    );
                }

                var fallback = binder.FallbackSetIndex(this, indexes, value);
                BindingRestrictions restrictions = fallback.Restrictions.Merge(BindingRestrictions.GetTypeRestriction(Expression, LimitType));
                foreach (var arg in indexes)
                    restrictions = restrictions.Merge(BindingRestrictions.GetTypeRestriction(arg.Expression, arg.LimitType));

                return new DynamicMetaObject(
                    AssertImplemented(
                        Expression.Call(
                            Expression.Constant(_type, typeof(TotemType)),
                            TotemType.SetMissingIndexInfo,
                            Expression,
                            Expression.NewArrayInit(
                                typeof(object),
                                ArrayUtils.ConvertAll(indexes, i => i.Expression)
                            )
                        ),
                        fallback.Expression
                    ),
                    restrictions
                );
            }
开发者ID:Alxandr,项目名称:IronTotem,代码行数:45,代码来源:TotemType.cs

示例5: BindSetIndex

 public override DynamicMetaObject BindSetIndex(SetIndexBinder binder, DynamicMetaObject[] indexes, DynamicMetaObject value)
 {
     Fallback fallback = null;
     if (!this.IsOverridden("TrySetIndex"))
     {
         return base.BindSetIndex(binder, indexes, value);
     }
     if (fallback == null)
     {
         fallback = e => binder.FallbackSetIndex(this, indexes, value, e);
     }
     return this.CallMethodReturnLast("TrySetIndex", binder, GetArgArray(indexes, value), fallback);
 }
开发者ID:pritesh-mandowara-sp,项目名称:DecompliedDotNetLibraries,代码行数:13,代码来源:DynamicObject.cs

示例6: BindSetIndex

 /// <summary>
 ///     Performs the binding of the dynamic set index operation.
 /// </summary>
 /// <param name="binder">
 ///     An instance of the <see cref="T:System.Dynamic.SetIndexBinder" /> that represents the details of the dynamic operation.
 /// </param>
 /// <param name="indexes">
 ///     An array of <see cref="T:System.Dynamic.DynamicMetaObject" /> instances - indexes for the set index operation.
 /// </param>
 /// <param name="value">
 ///     The <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the value for the set index operation.
 /// </param>
 /// <returns>
 ///     The new <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.
 /// </returns>
 public override DynamicMetaObject BindSetIndex( SetIndexBinder binder,
     DynamicMetaObject[] indexes,
     DynamicMetaObject value)
 {
     return ApplyBinding( meta => meta.BindSetIndex( binder, indexes, value ),
                          ( target, errorSuggestion ) =>
                          binder.FallbackSetIndex( target, indexes, value, errorSuggestion ) );
 }
开发者ID:idavis,项目名称:Archetype,代码行数:23,代码来源:DelegatingMetaObject.cs

示例7: BindSetIndex

 public override DynamicMetaObject BindSetIndex(SetIndexBinder binder, DynamicMetaObject[] indexes, DynamicMetaObject value)
 {
     return binder.FallbackSetIndex(UnwrapSelf(), indexes, value);
 }
开发者ID:40a,项目名称:PowerShell,代码行数:4,代码来源:ComFallbackMetaObject.cs

示例8: BindSetIndex

 public override DynamicMetaObject BindSetIndex( SetIndexBinder binder,
                                                 DynamicMetaObject[] indexes,
                                                 DynamicMetaObject value )
 {
     return binder.FallbackSetIndex( _baseMetaObject,
                                     indexes,
                                     AddTypeRestrictions( _metaObject.BindSetIndex( binder, indexes, value ) ) );
 }
开发者ID:allenwgreaves,项目名称:prototype.ps,代码行数:8,代码来源:Prototype.cs


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