SqlChars.Read(Int64, Char[], Int32, Int32) Method
Definition
Copies characters from this SqlChars instance to the passed-in buffer and returns the number of copied characters.
public:
long Read(long offset, cli::array <char> ^ buffer, int offsetInBuffer, int count);
public long Read (long offset, char[] buffer, int offsetInBuffer, int count);
member this.Read : int64 * char[] * int * int -> int64
Public Function Read (offset As Long, buffer As Char(), offsetInBuffer As Integer, count As Integer) As Long
Parameters
- buffer
- Char[]
The character array buffer to copy into.
Returns
Remarks
If an attempt is made to read beyond MaxLength, an exception is thrown.
If count
specifies more characters to be copied than are available from the offsetInBuffer
to the end of the value, only the available characters 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.