SocketAsyncEventArgs::SetBuffer Method (Int32, Int32)
Sets the data buffer to use with an asynchronous socket method.
Assembly: System (in System.dll)
Parameters
- offset
-
Type:
System::Int32
The offset, in bytes, in the data buffer where the operation starts.
- count
-
Type:
System::Int32
The maximum amount of data, in bytes, to send or receive in the buffer.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | An argument was out of range. This exception occurs if the offset parameter is less than zero or greater than the length of the array in the Buffer property. This exception also occurs if the count parameter is less than zero or greater than the length of the array in the Buffer property minus the offset parameter. |
The offset and count parameters can't be negative numbers. The combination of the offset and count parameters must be in bounds of the buffer array in the Buffer property.
This method sets the Count property to the count parameter and the Offset property to the offset parameter. If the Buffer property is null, this method ignores the offset and count parameters and sets the Offset and Count properties to 0.
This method does not change the Buffer property.
Available since 10
.NET Framework
Available since 2.0
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.1