System.Net.HttpClient.IHTTPRequest.ReceiveDataCallback

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ReceiveDataCallback: TReceiveDataCallback read GetReceiveDataCallback write SetReceiveDataCallback;

C++

__property _di_TReceiveDataCallback ReceiveDataCallback = {read=GetReceiveDataCallback, write=SetReceiveDataCallback};

Properties

Type Visibility Source Unit Parent
property public
System.Net.HttpClient.pas
System.Net.HTTPClient.hpp
System.Net.HttpClient IHTTPRequest

Description

If defined, your request calls the specified callback method of type TReceiveDataCallback one or more times while your request receives response data, and it indicates the current progress of the response download.

Instead of using a callback method, you might handle the OnReceiveData event.

See Also