<PackageReference Include="System.Data.SqlClient" Version="4.5.3" />

SqlBytes

public sealed class SqlBytes : INullable
public static SqlBytes Null { get; }

public byte[] Buffer { get; }

public bool IsNull { get; }

public byte this[long offset] { get; set; }

public long Length { get; }

public long MaxLength { get; }

public Stream Stream { get; set; }

public byte[] Value { get; }

public SqlBytes()

public SqlBytes(byte[] buffer)

public SqlBytes(SqlBinary value)

public SqlBytes(Stream s)

public static SqlBytes op_Explicit(SqlBinary value)

public static SqlBinary op_Explicit(SqlBytes value)

public long Read(long offset, byte[] buffer, int offsetInBuffer, int count)

public void SetLength(long value)

public void SetNull()

public void Write(long offset, byte[] buffer, int offsetInBuffer, int count)