EldoS
Navigation
Web site
Support
Table Of Contents

Filter: C#  VB.NET  Pascal  ActiveX  DLL 


TElSSLSocket.EndReceive

TElSSLSocket     See also    


 

Ends a pending asynchronous read.

 
 

Declaration

[C#]
    int EndReceive(IAsyncResult asyncResult)

[VB.NET]
    Function EndReceive(ByVal asyncResult As IAsyncResult) As Integer

[Pascal]
    not implemented;

[VB6]
    not implemented;

[ActiveX]
    not implemented;

[DLL]
    not implemented;
 
 

Parameters

  • asyncResult - stores state information for this asynchronous operation as well as any user defined data.
 
 

Return value

    The number of bytes received.

 
 

Description

    To maintain the asynchronous nature of the operation, call this method from the callback delegate. You can pass either the IAsyncResult returned from BeginReceive or the callback delegate used as an input parameter to BeginReceive as the asyncResult parameter. The EndReceive method blocks until the read ends.

     This method frees any resources allocated by the BeginReceive method.
    Please note that you should not call this method for SSLSocket class but for derived classes only.

 
 

See also:     BeginReceive

 
Contact Us | Terms of Use | Trademarks | Privacy Statement
Copyright (c) 1998-2012, EldoS Corporation