Expression.ConvertChecked Method (Expression, Type, MethodInfo)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Creates a UnaryExpression that represents a conversion operation that throws an exception if the target type is overflowed and for which the implementing method is specified.
Namespace: System.Linq.Expressions
Assembly: System.Core (in System.Core.dll)
Syntax
'Declaration
Public Shared Function ConvertChecked ( _
expression As Expression, _
type As Type, _
method As MethodInfo _
) As UnaryExpression
public static UnaryExpression ConvertChecked(
Expression expression,
Type type,
MethodInfo method
)
Parameters
- expression
Type: System.Linq.Expressions.Expression
An Expression to set the Operand property equal to.
- type
Type: System.Type
A Type to set the Type property equal to.
- method
Type: System.Reflection.MethodInfo
A MethodInfo to set the Method property equal to.
Return Value
Type: System.Linq.Expressions.UnaryExpression
A UnaryExpression that has the NodeType property equal to ConvertChecked and the Operand, Type, and Method properties set to the specified values.
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | expression or type is nulla null reference (Nothing in Visual Basic). |
ArgumentException | method is not nulla null reference (Nothing in Visual Basic) and the method it represents returns void, is not static (Shared in Visual Basic), or does not take exactly one argument. |
InvalidOperationException | No conversion operator is defined between expression.Type and type. -or- expression.Type is not assignable to the argument type of the method represented by method. -or- The return type of the method represented by method is not assignable to type. -or- expression.Type or type is a nullable value type and the corresponding non-nullable value type does not equal the argument type or the return type, respectively, of the method represented by method. |
AmbiguousMatchException | More than one method that matches the method description was found. |
Remarks
The Method property of the resulting UnaryExpression is set to the implementing method. The IsLiftedToNull property is false. If the node is lifted, IsLifted is true. Otherwise, it is false.
Implementing Method
The following rules determine the implementing method for the operation:
If method is not nulla null reference (Nothing in Visual Basic), it is the implementing method. It must represent a non-void, static (Shared in Visual Basic) method that takes one argument.
Otherwise, if either expression.Type or type is a user-defined type that defines an implicit or explicit conversion operator, the MethodInfo that represents that operator is the implementing method.
Otherwise:
If both expression.Type and type represent numeric or Boolean types, or nullable or non-nullable enumeration types, the implementing method is nulla null reference (Nothing in Visual Basic).
If either expression.Type or type is a reference type and an explicit boxing, unboxing, or reference conversion exists from expression.Type to type, the implementing method is nulla null reference (Nothing in Visual Basic).
Lifted versus Non-Lifted
If the implementing method is not nulla null reference (Nothing in Visual Basic):
If expression.Type is assignable to the argument type of the implementing method and the return type of the implementing method is assignable to type, the node is not lifted.
If either or both of expression.Type or type are a nullable value type and the corresponding non-nullable value types are equal to the argument type and the return type of the implementing method respectively, the node is lifted.
If the implementing method is nulla null reference (Nothing in Visual Basic):
If both expression.Type and type are non-nullable, the node is not lifted.
Otherwise the node is lifted.
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
XNA Framework
Supported in: Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.