Class HttpRequestHeadersExtensions
Extends the HttpRequestHeaders class with additional methods for convenient header manipulation.
Inherited Members
Namespace: Coree.NETStandard.Classes.HttpRequestService
Assembly: Coree.NETStandard.dll
Syntax
public static class HttpRequestHeadersExtensions
Remarks
This class provides extension methods for the HttpRequestHeaders class, allowing for enhanced and simplified operations such as adding or updating cookies and other header values. These extensions are designed to improve the readability and maintainability of code that interacts with HTTP request headers.
Methods
| Edit this page View SourceAddRequestHeaderCookies(HttpRequestHeaders, Dictionary<string, string>?, bool)
Adds or updates the Cookie header in the HttpRequestHeaders.
Declaration
public static void AddRequestHeaderCookies(this HttpRequestHeaders headers, Dictionary<string, string>? cookies, bool forceUpdate = true)
Parameters
Type | Name | Description |
---|---|---|
HttpRequestHeaders | headers | The HttpRequestHeaders to which the Cookie header will be added or updated. |
Dictionary<string, string> | cookies | A dictionary containing the cookies to be added to the header. |
bool | forceUpdate | If true, existing cookie values will be replaced. If false, an exception will be thrown if the header already contains cookies. |
Remarks
This method allows for flexible management of the Cookie header within HttpRequestHeaders, providing the option to either enforce the addition of new cookies by replacing any existing ones or to prevent modification if cookies are already present.
Exceptions
Type | Condition |
---|---|
ArgumentException | Thrown when forceUpdate is false and the Cookie header already exists. |