OracleBoolean.Xor Method
.NET Framework 2.0
Performs a bitwise exclusive-OR operation on the supplied parameters.
Namespace: System.Data.OracleClient
Assembly: System.Data.OracleClient (in system.data.oracleclient.dll)
Assembly: System.Data.OracleClient (in system.data.oracleclient.dll)
public static OracleBoolean Xor ( OracleBoolean x, OracleBoolean y )
public static function Xor ( x : OracleBoolean, y : OracleBoolean ) : OracleBoolean
Parameters
- x
An OracleBoolean structure.
- y
An OracleBoolean structure.
Return Value
The results of the logical XOR operation as shown in the following table.| Value of x | Value of y | Result |
|---|---|---|
| true | true | false |
| true | false | true |
| false | false | false |
| true | unknown | unknown |
| false | unknown | unknown |
| unknown | unknown | unknown |
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.