Datasnap.DSSession.TDSTunnelService.ProcessGET
| [–] Properties | |
|---|---|
| Type: function | |
| Visibility: public | |
| Source: Datasnap.DSSession.pas Datasnap.DSSession.hpp
| |
| Unit: Datasnap.DSSession | |
| Parent: TDSTunnelService | |
Delphi
function ProcessGET(Params: TStrings; var Len: Integer; out CloseConnection: Boolean): TStream;
C++
System::Classes::TStream* __fastcall ProcessGET(System::Classes::TStrings* Params, int &Len, /* out */ bool &CloseConnection);
Description
Handles the GET requests.
The ProcessGET method handles the GET requests, similar to the READ operations. The response is returned as a byte stream. The following table lists the arguments of the ProcessGET method.
| Argument | Meaning |
|---|---|
|
Params |
Request parameters that provide the session ID and the expected number of bytes to read. |
|
Len |
Actual number of bytes read. |
|
CloseConnection |
Specifies whether the server has to signal the client to close the connection. |