Class HttpHeadersExtensions
Provides extension methods for handling and parsing HTTP headers.
Inherited Members
Namespace: Coree.NETStandard.Extensions.Http.HttpHeader
Assembly: Coree.NETStandard.dll
Syntax
public static class HttpHeadersExtensions
Methods
| Edit this page View SourceGetContentEncoding(HttpHeaders, Encoding?)
Retrieves the character encoding from the Content-Type HTTP header.
Declaration
public static Encoding GetContentEncoding(this HttpHeaders headers, Encoding? defaultEncoding = null)
Parameters
Type | Name | Description |
---|---|---|
HttpHeaders | headers | The collection of HTTP headers. |
Encoding | defaultEncoding | The default encoding to use if no encoding is specified or if the specified encoding is unrecognized. Defaults to UTF-8. |
Returns
Type | Description |
---|---|
Encoding | The detected Encoding or the default if not specified. |