IT Tutorial

OracleBoolean.

Performs a NOT operation on an OracleBoolean.

[Visual Basic]
returnValue = OracleBoolean.op_LogicalNot(x)
[C#]
public static OracleBoolean operator !(
   OracleBoolean x
);
[C++]
public: static OracleBoolean op_LogicalNot(
   OracleBoolean x
);
 
[JScript]
returnValue = !x;

[Visual Basic] In Visual Basic, you can use the operators defined by a type, but you cannot define

your own.

[JScript] In JScript, you can use the operators defined by a type, but you cannot define your own.

Arguments [Visual Basic, JScript]

x

The OracleBoolean on which the NOT operation will be performed.

Parameters [C#, C++]

x

The OracleBoolean on which the NOT operation will be performed.

Return Value

An OracleBoolean with the Value True if argument was true, Null if argument was null, and False otherwise.

Requirements

Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

.NET Framework Security:

  • Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see




OracleBoolean.