SqlBytes.Explicit Operator

Definition

Converts to a SqlBytes structure.

Overloads

Explicit(SqlBytes to SqlBinary)

Converts a SqlBytes structure to a SqlBinary structure.

Explicit(SqlBinary to SqlBytes)

Converts a SqlBinary structure to a SqlBytes structure.

Explicit(SqlBytes to SqlBinary)

Converts a SqlBytes structure to a SqlBinary structure.

public:
 static explicit operator System::Data::SqlTypes::SqlBinary(System::Data::SqlTypes::SqlBytes ^ value);
public static explicit operator System.Data.SqlTypes.SqlBinary (System.Data.SqlTypes.SqlBytes value);
static member op_Explicit : System.Data.SqlTypes.SqlBytes -> System.Data.SqlTypes.SqlBinary
Public Shared Narrowing Operator CType (value As SqlBytes) As SqlBinary

Parameters

value
SqlBytes

The SqlBytes structure to be converted.

Returns

A SqlBinary structure.

Remarks

The equivalent method for this operator is SqlBytes.ToSqlBinary().

See also

Applies to

Explicit(SqlBinary to SqlBytes)

Converts a SqlBinary structure to a SqlBytes structure.

public:
 static explicit operator System::Data::SqlTypes::SqlBytes ^(System::Data::SqlTypes::SqlBinary value);
public static explicit operator System.Data.SqlTypes.SqlBytes (System.Data.SqlTypes.SqlBinary value);
static member op_Explicit : System.Data.SqlTypes.SqlBinary -> System.Data.SqlTypes.SqlBytes
Public Shared Narrowing Operator CType (value As SqlBinary) As SqlBytes

Parameters

value
SqlBinary

The SqlBinary structure to be converted.

Returns

A SqlBytes structure.

Remarks

The equivalent method for this operator is SqlBytes.SqlBytes(SqlBinary).

See also

Applies to