Performs an HTTP POST request with form data
Source position: fphttpclient.pp line 352
public procedure TFPCustomHTTPClient.FormPost( |
const URL: string; |
FormData: RawByteString; |
const Response: TStream |
); |
const URL: string; |
FormData: TStrings; |
const Response: TStream |
); |
const URL: string; |
const FormData: string; |
const Response: TStrings |
); |
const URL: string; |
FormData: TStrings; |
const Response: TStrings |
); |
const URL: string; |
const FormData: RawByteString |
):RawByteString; |
const URL: string; |
FormData: TStrings |
URL |
|
The URL to post the form data to |
FormData |
|
The form data to post |
Response |
|
Variable to store the response content as string |
URL |
|
The URL to post the form data to |
FormData |
|
The form data to post |
Response |
|
Variable to store the response content as string |
URL |
|
The URL to post the form data to |
FormData |
|
The form data to post |
Response |
|
Variable to store the response content as string |
URL |
|
The URL to post the form data to |
FormData |
|
The form data to post |
Response |
|
Variable to store the response content as string |
URL |
|
The URL to post the form data to |
FormData |
|
The form data to post |
The response content as string
URL |
|
The URL to post the form data to |
FormData |
|
The form data to post |
Performs an HTTP POST request with form-encoded data. The form data is automatically encoded as application/x-www-form-urlencoded.
May raise HTTP-related exceptions on connection errors or invalid responses.
|
Performs an HTTP POST request |
|
|
Performs an HTTP POST request with file upload |