Expression.ExclusiveOrAssign Method (Expression, Expression, MethodInfo, LambdaExpression)

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

Creates a BinaryExpression that represents a bitwise XOR assignment operation, using op_ExclusiveOr for user-defined types.

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

Syntax

Public Shared Function ExclusiveOrAssign ( _
    left As Expression, _
    right As Expression, _
    method As MethodInfo, _
    conversion As LambdaExpression _
) As BinaryExpression
public static BinaryExpression ExclusiveOrAssign(
    Expression left,
    Expression right,
    MethodInfo method,
    LambdaExpression conversion
)

Parameters

Return Value

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

Version Information

Windows Phone OS

Supported in: 8.1, 8.0

See Also

Reference

Expression Class

ExclusiveOrAssign Overload

System.Linq.Expressions Namespace