OracleBinary.Explicit(OracleBinary to Byte[]) Operator

Definition

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

public:
 static explicit operator cli::array <System::Byte> ^(System::Data::OracleClient::OracleBinary x);
public static explicit operator byte[] (System.Data.OracleClient.OracleBinary x);
static member op_Explicit : System.Data.OracleClient.OracleBinary -> byte[]
Public Shared Narrowing Operator CType (x As OracleBinary) As Byte()

Parameters

Returns

Byte[]

An array of bytes.

Remarks

[Visual Basic]

In Visual Basic, you can use the conversions defined by the class, but you cannot override them or create your own. If Option Strict is set, you must use the <CType operator> to convert the OracleBinary to a binary object.

The equivalent method for this operator is OracleBinary.Value

Applies to