本文整理汇总了C#中System.Dynamic.DynamicMetaObject.BindConvert方法的典型用法代码示例。如果您正苦于以下问题:C# DynamicMetaObject.BindConvert方法的具体用法?C# DynamicMetaObject.BindConvert怎么用?C# DynamicMetaObject.BindConvert使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Dynamic.DynamicMetaObject
的用法示例。
在下文中一共展示了DynamicMetaObject.BindConvert方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TryConvert
protected static bool TryConvert( ConvertBinder binder, DynamicMetaObject instance, out DynamicMetaObject result )
{
if ( instance.HasValue &&
instance.RuntimeType.IsValueType )
{
result = instance.BindConvert( binder );
return true;
}
if ( binder.Type.IsInterface )
{
Expression expression = Convert( instance.Expression, binder.Type );
result = new DynamicMetaObject( expression, BindingRestrictions.Empty, instance.Value );
result = result.BindConvert( binder );
return true;
}
if ( typeof (IDynamicMetaObjectProvider).IsAssignableFrom( instance.RuntimeType ) )
{
result = instance.BindConvert( binder );
return true;
}
result = null;
return false;
}
示例2: Bind
/// <summary>
/// Performs the binding of the dynamic convert operation.
/// </summary>
/// <param name="target">The target of the dynamic convert operation.</param>
/// <param name="args">An array of arguments of the dynamic convert operation.</param>
/// <returns>The <see cref="DynamicMetaObject"/> representing the result of the binding.</returns>
public sealed override DynamicMetaObject Bind(DynamicMetaObject target, DynamicMetaObject[] args)
{
ContractUtils.RequiresNotNull(target, nameof(target));
ContractUtils.Requires(args == null || args.Length == 0, nameof(args));
return target.BindConvert(this);
}
示例3: TestMetaObject
public static void TestMetaObject(DynamicMetaObject target, Type type, bool isValid = true)
{
ConvertBinder binder = new TestConvertBinder(type);
DynamicMetaObject result = target.BindConvert(binder);
Assert.IsNotNull(result);
// Convert expression
UnaryExpression expression = result.Expression as UnaryExpression;
Assert.IsNotNull(expression);
Assert.AreEqual<Type>(binder.Type, expression.Type);
if (isValid)
{
MethodCallExpression methodCallExp = expression.Operand as MethodCallExpression;
if (methodCallExp != null)
{
Assert.IsTrue(methodCallExp.Method.ToString().Contains("CastValue"));
}
else
{
ParameterExpression paramExpression = expression.Operand as ParameterExpression;
Assert.IsNotNull(paramExpression);
}
}
else
{
Expression<Action> throwExp = Expression.Lambda<Action>(Expression.Block(expression), new ParameterExpression[] { });
ExceptionTestHelper.ExpectException<InvalidCastException>(() => throwExp.Compile().Invoke());
}
}
示例4: TestBindParams
public static void TestBindParams(DynamicMetaObject target)
{
ConvertBinder binder = new TestConvertBinder(typeof(int));
ExceptionTestHelper.ExpectException<ArgumentNullException>(() => { var result = target.BindConvert(null); });
}
示例5: Bind
public sealed override DynamicMetaObject Bind(DynamicMetaObject target, DynamicMetaObject[] args)
{
ContractUtils.RequiresNotNull(target, "target");
ContractUtils.Requires((args == null) || (args.Length == 0), "args");
return target.BindConvert(this);
}