Difference between revisions of "Midware TClientWSocket.RcvdCount"

From Overbyte
Jump to navigation Jump to search
(Created page with ' Main page -> Midware component reference -> TClientWSocket -> [[Midware_TClientWSocket.RcdvCount | R…')
 
 
Line 3: Line 3:
 
== Definition ==
 
== Definition ==
  
  '''property''' RcdvCount: '''Longlnt''';
+
  '''property''' RcdvCount: Longlnt;
  
 
== Description ==
 
== Description ==
  
 
Returns the number of characters received and not yet read. It may be unaccurate if called from OnDataAvailable event after a first call to receive or ReceiveFrom because winsock will not update his internal count until out of his event handler (FD_READ).
 
Returns the number of characters received and not yet read. It may be unaccurate if called from OnDataAvailable event after a first call to receive or ReceiveFrom because winsock will not update his internal count until out of his event handler (FD_READ).

Latest revision as of 14:33, 14 May 2011

Main page -> Midware component reference -> TClientWSocket -> RcdvCount

Definition

property RcdvCount: Longlnt;

Description

Returns the number of characters received and not yet read. It may be unaccurate if called from OnDataAvailable event after a first call to receive or ReceiveFrom because winsock will not update his internal count until out of his event handler (FD_READ).