本文整理汇总了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);
}
示例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);
}
示例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);
}
示例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
);
}
示例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);
}
示例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 ) );
}
示例7: BindSetIndex
public override DynamicMetaObject BindSetIndex(SetIndexBinder binder, DynamicMetaObject[] indexes, DynamicMetaObject value)
{
return binder.FallbackSetIndex(UnwrapSelf(), indexes, value);
}
示例8: BindSetIndex
public override DynamicMetaObject BindSetIndex( SetIndexBinder binder,
DynamicMetaObject[] indexes,
DynamicMetaObject value )
{
return binder.FallbackSetIndex( _baseMetaObject,
indexes,
AddTypeRestrictions( _metaObject.BindSetIndex( binder, indexes, value ) ) );
}