HTTPRequestInfo
HTTPRequestInfo Class
This class is used to pass information to HTTPHelper methods. This class has the following properties:
Properties
| Name | Type | Description |
|---|
| Accept | string | Accept Header. |
| CertificateValidationEnabled | bool | Indicates if certificate validation is enabled. |
| ContentLength | int | Length of the content in the request. |
| ContentType | string | Mime Content Type. See MimeContentTypes. |
| Expect | string | The value for the Expect HTTP header. |
| Headers | IDictionary<string, string> | Name-value pairs for request headers. |
| Password | string | Password for the request, if required. |
| PostData | string | Body of the HTTP request. Normally used in conjunction with HTTP POST. |
| ServicePoint | ServicePoint | Associated service point for the request. |
| Url | string | Target URL for HTTP GET and HTTP POST. |
| UserAgent | string | User Agent of the request. |
| UserId | string | User ID for authentication, if applicable. |