SqlBytes::Write Method (Int64, array<Byte>^, Int32, Int32)
.NET Framework (current version)
Copies bytes from the passed-in buffer to this SqlBytes instance.
Assembly: System.Data (in System.Data.dll)
public: void Write( long long offset, array<unsigned char>^ buffer, int offsetInBuffer, int count )
Parameters
- offset
-
Type:
System::Int64
An Int64 long value offset into the value that is contained in the SqlBytes instance.
- buffer
-
Type:
array<System::Byte>^
The byte array buffer to copy into.
- offsetInBuffer
-
Type:
System::Int32
An Int32 integer offset into the buffer to start copying into.
- count
-
Type:
System::Int32
An Int32 integer representing the number of bytes to copy.
If this operation writes to a position beyond Length but within MaxLength, Length is updated to reflect the new ending position.
The value of offsetInBuffer must be less than or equal to Length. An exception is thrown otherwise. Only a value of 0 can be specified when writing to a null value instance.
If an attempt is made to write beyond MaxLength, an exception is thrown.
.NET Framework
Available since 2.0
Available since 2.0
Show: