Class HttpRequestServiceHandler
Handles HTTP requests with custom server certificate validation and automatic decompression.
Implements
Inherited Members
Namespace: Coree.NETStandard.Classes.HttpRequestService
Assembly: Coree.NETStandard.dll
Syntax
public class HttpRequestServiceHandler : HttpClientHandler, IDisposable
Constructors
| Edit this page View SourceHttpRequestServiceHandler(ILogger<HttpRequestServiceHandler>)
Initializes a new instance of the HttpRequestServiceHandler class.
Declaration
public HttpRequestServiceHandler(ILogger<HttpRequestServiceHandler> logger)
Parameters
Type | Name | Description |
---|---|---|
ILogger<HttpRequestServiceHandler> | logger | The logger used to log SSL policy errors and other information. |
Methods
| Edit this page View SourceServerCertificateCustomValidation(HttpRequestMessage, X509Certificate2, X509Chain, SslPolicyErrors)
Validates the server certificate with custom logic.
Declaration
public bool ServerCertificateCustomValidation(HttpRequestMessage sender, X509Certificate2 certificate, X509Chain chain, SslPolicyErrors errors)
Parameters
Type | Name | Description |
---|---|---|
HttpRequestMessage | sender | The originating request message that triggered the validation. |
X509Certificate2 | certificate | The certificate to validate. |
X509Chain | chain | The chain of certificates associated with the server's certificate. |
SslPolicyErrors | errors | SSL policy errors encountered during the validation. |
Returns
Type | Description |
---|---|
bool | true if the certificate is considered valid; otherwise, false. |
Remarks
This method logs any SSL policy errors. It currently returns true for all certificates, which is insecure for production environments. Consider implementing a more stringent validation logic.