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.BeginSendTo

[To be supplied.]

[Visual Basic]
Public Function BeginSendTo( _
   ByVal writeBuffer As Array, _
   ByVal index As Integer, _
   ByVal size As Integer, _
   ByVal flags As Integer, _
   ByVal remoteEP As EndPoint, _
   ByVal callback As AsyncCallback, _
   ByVal state As Object _
) As IAsyncResult
[C#]
public IAsyncResult BeginSendTo(
   Array writeBuffer,
   int index,
   int size,
   int flags,
   EndPoint remoteEP,
   AsyncCallback callback,
   object state
);
[C++]
public: IAsyncResult* BeginSendTo(
   Array* writeBuffer,
   int index,
   int size,
   int flags,
   EndPoint* remoteEP,
   AsyncCallback* callback,
   Object* state
);
[JScript]
public function BeginSendTo(
   writeBuffer : Array,
   index : int,
   size : int,
   flags : int,
   remoteEP : EndPoint,
   callback : AsyncCallback,
   state : Object
) : IAsyncResult;

Parameters

writeBuffer
[To be supplied.]
index
[To be supplied.]
size
[To be supplied.]
flags
[To be supplied.]
remoteEP
[To be supplied.]
callback
[To be supplied.]
state
[To be supplied.]

See Also

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