Sdílet prostřednictvím


SqlBinary.Explicit Operátor

Definice

Převede na SqlBinary strukturu.

Přetížení

Explicit(SqlBinary to Byte[])

SqlBinary Převede strukturu na Byte pole.

Explicit(SqlGuid to SqlBinary)

SqlGuid Převede strukturu na SqlBinary strukturu.

Explicit(SqlBinary to Byte[])

Zdroj:
SQLBinary.cs
Zdroj:
SQLBinary.cs
Zdroj:
SQLBinary.cs

SqlBinary Převede strukturu na Byte pole.

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

Parametry

x
SqlBinary

Struktura SqlBinary , která má být převedena.

Návraty

Byte[]

Pole Byte .

Poznámky

Ekvivalentní metoda pro tento operátor je SqlBinary.Value

Viz také

Platí pro

Explicit(SqlGuid to SqlBinary)

Zdroj:
SQLBinary.cs
Zdroj:
SQLBinary.cs
Zdroj:
SQLBinary.cs

SqlGuid Převede strukturu na SqlBinary strukturu.

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

Parametry

x
SqlGuid

Struktura SqlGuid , která má být převedena.

Návraty

Struktura SqlGuid , která má být převedena.

Poznámky

Ekvivalentní metoda pro tento operátor je SqlBinary.ToSqlGuid()

Viz také

Platí pro