OracleBinary Struct

Definition

Represents a variable-length stream of binary data to be stored in or retrieved from a database.

public value class OracleBinary : IComparable, System::Data::SqlTypes::INullable
public struct OracleBinary : IComparable, System.Data.SqlTypes.INullable
type OracleBinary = struct
    interface INullable
Public Structure OracleBinary
Implements IComparable, INullable
Inheritance
OracleBinary
Implements

Remarks

To obtain an OracleBinary object, call the GetOracleBinary method.

Constructors

OracleBinary(Byte[])

Initializes a new instance of the OracleBinary structure, setting the Value property to the contents of the supplied byte array.

Fields

Null

Represents a null value that can be assigned to the Value property of an OracleBinary structure.

Properties

IsNull

Gets a value indicating whether the Value property of the OracleBinary structure is null.

Item[Int32]

Gets the single byte from the Value property located at the position indicated by the integer parameter, index. If index indicates a position beyond the end of the byte array, an exception is raised.

Length

Gets the length in bytes of the Value property. This property is read-only.

Value

Gets the value of the OracleBinary structure. This property is read-only.

Methods

CompareTo(Object)

Compares this OracleBinary object to the supplied object and returns an indication of their relative values.

Concat(OracleBinary, OracleBinary)

Concatenates two OracleBinary structures to create a new OracleBinary structure.

Equals(Object)

Compares the supplied object parameter to the Value property of the OracleBinary object.

Equals(OracleBinary, OracleBinary)

Compares two OracleBinary structures to determine if they are equal.

GetHashCode()

Returns the hash code for this OracleBinary structure.

GreaterThan(OracleBinary, OracleBinary)

Compares two OracleBinary structures to determine if the first is greater than the second.

GreaterThanOrEqual(OracleBinary, OracleBinary)

Compares two OracleBinary structures to determine if the first is greater than or equal to the second.

LessThan(OracleBinary, OracleBinary)

Compares two OracleBinary structures to determine if the first is less than the second.

LessThanOrEqual(OracleBinary, OracleBinary)

Compares two OracleBinary structures to determine if the first is less than or equal to the second.

NotEquals(OracleBinary, OracleBinary)

Compares two OracleBinary structures to determine if they are not equal.

Operators

Addition(OracleBinary, OracleBinary)

Concatenates the two OracleBinary parameters to create a new OracleBinary structure.

Equality(OracleBinary, OracleBinary)

Compares two OracleBinary structures to determine if they are equal.

Explicit(OracleBinary to Byte[])

Gets the contents of the Value property of the OracleBinary parameter as an array of bytes.

GreaterThan(OracleBinary, OracleBinary)

Compares two OracleBinary structures to determine if the first is greater than the second.

GreaterThanOrEqual(OracleBinary, OracleBinary)

Compares two OracleBinary structures to determine if the first is greater than or equal to the second.

Implicit(Byte[] to OracleBinary)

Converts an array of bytes to an OracleBinary structure.

Inequality(OracleBinary, OracleBinary)

Compares two OracleBinary structures to determine if they are equal.

LessThan(OracleBinary, OracleBinary)

Compares two OracleBinary structures to determine if the first is less than the second.

LessThanOrEqual(OracleBinary, OracleBinary)

Compares two OracleBinary structures to determine if the first is less than or equal to the second.

Applies to