Power Method (Expression, Expression, MethodInfo)
Collapse the table of content
Expand the table of content

Expression.Power Method (Expression, Expression, MethodInfo)

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Creates a BinaryExpression that represents raising a number to a power.

Namespace:  System.Linq.Expressions
Assembly:  System.Core (in System.Core.dll)

'Declaration
Public Shared Function Power ( _
	left As Expression, _
	right As Expression, _
	method As MethodInfo _
) As BinaryExpression

Parameters

left
Type: System.Linq.Expressions.Expression
An Expression to set the Left property equal to.
right
Type: System.Linq.Expressions.Expression
An Expression to set the Right property equal to.
method
Type: System.Reflection.MethodInfo
A MethodInfo to set the Method property equal to.

Return Value

Type: System.Linq.Expressions.BinaryExpression
A BinaryExpression that has the NodeType property equal to Power and the Left, Right, and Method properties set to the specified values.

ExceptionCondition
ArgumentNullException

left or right is Nothing.

ArgumentException

method is not Nothing and the method it represents returns void, is not static (Shared in Visual Basic), or does not take exactly two arguments.

InvalidOperationException

method is Nothing and the exponentiation operator is not defined for left.Type and right.Type.

-or-

method is Nothing and left.Type and/or right.Type are not Double.

The resulting BinaryExpression has the Method property set to the implementing method. The Type property is set to the type of the node. If the node is lifted, the IsLifted and IsLiftedToNull properties are both true. Otherwise, they are false. The Conversion property is Nothing.

The following information describes the implementing method, the node type, and whether a node is lifted.

Implementing Method

The following rules determine the implementing method for the operation:

  • If method is not Nothing and it represents a non-void, static (Shared in Visual Basic) method that takes two arguments, it is the implementing method.

  • Otherwise, if the Type property of either left or right represents a user-defined type that overloads the exponentiation operator, the MethodInfo that represents that method is the implementing method.

  • Otherwise, if left.Type and right.Type are both Double, the implementing method is Pow.

Node Type and Lifted versus Non-Lifted

  • If left.Type and right.Type are assignable to the corresponding argument types of the implementing method, the node is not lifted. The type of the node is the return type of the implementing method.

  • If the following two conditions are satisfied, the node is lifted and the type of the node is the nullable type that corresponds to the return type of the implementing method:

    • left.Type and right.Type are both value types of which at least one is nullable and the corresponding non-nullable types are equal to the corresponding argument types of the implementing method.

    • The return type of the implementing method is a non-nullable value type.

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft