SqlBytes Konstruktory

Definice

Inicializuje novou instanci SqlBytes třídy.

Přetížení

Name Description
SqlBytes()

Inicializuje novou instanci SqlBytes třídy.

SqlBytes(Byte[])

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

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
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
Zdroj:
SQLBytes.cs
Zdroj:
SQLBytes.cs

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

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 nepodepsaných bajtů.

Poznámky

Pokud se předá odkaz null, instance je nastavena na hodnotu null.

Viz také

Platí pro

SqlBytes(SqlBinary)

Zdroj:
SQLBytes.cs
Zdroj:
SQLBytes.cs
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 se předá odkaz null, instance je nastavena na hodnotu null.

Viz také

Platí pro

SqlBytes(Stream)

Zdroj:
SQLBytes.cs
Zdroj:
SQLBytes.cs
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

Nějaké Stream.

Poznámky

Pokud se předá odkaz null, instance je nastavena na hodnotu null.

Viz také

Platí pro