Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

SocketAsyncEventArgs::Buffer Property

 

Gets the data buffer to use with an asynchronous socket method.

Namespace:   System.Net.Sockets
Assembly:  System (in System.dll)

public:
property array<unsigned char>^ Buffer {
	array<unsigned char>^ get();
}

Property Value

Type: array<System::Byte>^

A Byte array that represents the data buffer to use with an asynchronous socket method.

This property gets the data buffer currently associated with the SocketAsyncEventArgs instance. To set the buffer, the SetBuffer method must be used.

This property is used with the Socket::AcceptAsync, Socket::ConnectAsync, Socket::ReceiveAsync, Socket::ReceiveFromAsync, Socket::ReceiveMessageFromAsync, Socket::SendAsync, and Socket::SendToAsync methods.

Universal Windows Platform
Available since 10
.NET Framework
Available since 2.0
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.1
Return to top
Show:
© 2017 Microsoft