Static method to perform a simple form POST request
Source position: fphttpclient.pp line 359
public class procedure TFPCustomHTTPClient.SimpleFormPost( |
const URL: string; |
const FormData: RawByteString; |
const Response: TStream |
); |
const URL: string; |
FormData: TStrings; |
const Response: TStream |
); |
const URL: string; |
const FormData: RawByteString; |
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 |
Static utility method for performing a simple form POST request without requiring an HTTP client instance.
May raise HTTP-related exceptions on connection errors.
|
Performs an HTTP POST request with form data |