Share via


SqlBytes Konstruktory

Definice

Inicializuje novou instanci SqlBytes třídy .

Přetížení

SqlBytes()

Inicializuje novou instanci SqlBytes třídy .

SqlBytes(Byte[])

Inicializuje novou instanci SqlBytes třídy na základě zadaného pole bajtů.

SqlBytes(SqlBinary)

Inicializuje novou instanci SqlBytes třídy na základě zadané SqlBinary hodnoty.

SqlBytes(Stream)

Inicializuje novou instanci SqlBytes třídy na základě zadané Stream hodnoty.

SqlBytes()

Zdroj:
SQLBytes.cs
Zdroj:
SQLBytes.cs
Zdroj:
SQLBytes.cs

Inicializuje novou instanci SqlBytes třídy .

public:
 SqlBytes();
public SqlBytes ();
Public Sub New ()

Viz také

Platí pro

SqlBytes(Byte[])

Zdroj:
SQLBytes.cs
Zdroj:
SQLBytes.cs
Zdroj:
SQLBytes.cs

Inicializuje novou instanci SqlBytes třídy na základě zadaného pole bajtů.

public:
 SqlBytes(cli::array <System::Byte> ^ buffer);
public SqlBytes (byte[] buffer);
public SqlBytes (byte[]? buffer);
new System.Data.SqlTypes.SqlBytes : byte[] -> System.Data.SqlTypes.SqlBytes
Public Sub New (buffer As Byte())

Parametry

buffer
Byte[]

Pole bajtů bez znaménka.

Poznámky

Pokud je předán nulový odkaz, instance je nastavena na hodnotu null.

Viz také

Platí pro

SqlBytes(SqlBinary)

Zdroj:
SQLBytes.cs
Zdroj:
SQLBytes.cs
Zdroj:
SQLBytes.cs

Inicializuje novou instanci SqlBytes třídy na základě zadané SqlBinary hodnoty.

public:
 SqlBytes(System::Data::SqlTypes::SqlBinary value);
public SqlBytes (System.Data.SqlTypes.SqlBinary value);
new System.Data.SqlTypes.SqlBytes : System.Data.SqlTypes.SqlBinary -> System.Data.SqlTypes.SqlBytes
Public Sub New (value As SqlBinary)

Parametry

value
SqlBinary

Hodnota SqlBinary .

Poznámky

Pokud je předán nulový odkaz, instance je nastavena na hodnotu null.

Viz také

Platí pro

SqlBytes(Stream)

Zdroj:
SQLBytes.cs
Zdroj:
SQLBytes.cs
Zdroj:
SQLBytes.cs

Inicializuje novou instanci SqlBytes třídy na základě zadané Stream hodnoty.

public:
 SqlBytes(System::IO::Stream ^ s);
public SqlBytes (System.IO.Stream s);
public SqlBytes (System.IO.Stream? s);
new System.Data.SqlTypes.SqlBytes : System.IO.Stream -> System.Data.SqlTypes.SqlBytes
Public Sub New (s As Stream)

Parametry

s
Stream

Úloha Stream.

Poznámky

Pokud je předán nulový odkaz, instance je nastavena na hodnotu null.

Viz také

Platí pro