NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Socket.BeginReceiveFrom

[To be supplied.]

[Visual Basic]
Public Function BeginReceiveFrom( _
   ByVal readBuffer As Array, _
   ByVal index As Integer, _
   ByVal request As Integer, _
   ByVal flags As Integer, _
   ByRef EP As EndPoint, _
   ByVal callback As AsyncCallback, _
   ByVal state As Object _
) As IAsyncResult
[C#]
public IAsyncResult BeginReceiveFrom(
   Array readBuffer,
   int index,
   int request,
   int flags,
   ref EndPoint EP,
   AsyncCallback callback,
   object state
);
[C++]
public: IAsyncResult* BeginReceiveFrom(
   Array* readBuffer,
   int index,
   int request,
   int flags,
   EndPoint** EP,
   AsyncCallback* callback,
   Object* state
);
[JScript]
public function BeginReceiveFrom(
   readBuffer : Array,
   index : int,
   request : int,
   flags : int,
   EP : EndPoint,
   callback : AsyncCallback,
   state : Object
) : IAsyncResult;

Parameters

readBuffer
[To be supplied.]
index
[To be supplied.]
request
[To be supplied.]
flags
[To be supplied.]
EP
[To be supplied.]
callback
[To be supplied.]
state
[To be supplied.]

See Also

Socket Class | Socket Members | System.Net.Sockets Namespace