SqlBytes.Read(Int64, Byte[], Int32, Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Copies bytes from this SqlBytes instance to the passed-in buffer and returns the number of copied bytes.
public:
long Read(long offset, cli::array <System::Byte> ^ buffer, int offsetInBuffer, int count);
public long Read (long offset, byte[] buffer, int offsetInBuffer, int count);
member this.Read : int64 * byte[] * int * int -> int64
Public Function Read (offset As Long, buffer As Byte(), offsetInBuffer As Integer, count As Integer) As Long
Parameters
- buffer
- Byte[]
The byte array buffer to copy into.
Returns
An Int64 long value representing the number of copied bytes.
Remarks
If an attempt is made to read beyond MaxLength, an exception is thrown.
If count
specifies more bytes to be copied than are available from the offset
to the end of the value, only the available bytes are copied.
An exception is thrown if the destination buffer is a null reference.
An exception is thrown if the destination buffer cannot receive as many characters as requested.