HeaderDictionaryExtensions Class

Namespace
Microsoft.AspNetCore.Http
Assemblies
  • Microsoft.AspNetCore.Http.Abstractions

Syntax

public class HeaderDictionaryExtensions
class Microsoft.AspNetCore.Http.HeaderDictionaryExtensions

Methods

Append(Microsoft.AspNetCore.Http.IHeaderDictionary, System.String, Microsoft.Extensions.Primitives.StringValues)

Add new values. Each item remains a separate array entry.

Arguments:
public static void Append(this IHeaderDictionary headers, string key, StringValues value)
AppendCommaSeparatedValues(Microsoft.AspNetCore.Http.IHeaderDictionary, System.String, System.String[])

Quotes any values containing comas, and then coma joins all of the values with any existing values.

Arguments:
public static void AppendCommaSeparatedValues(this IHeaderDictionary headers, string key, params string[] values)
GetCommaSeparatedValues(Microsoft.AspNetCore.Http.IHeaderDictionary, System.String)

Get the associated values from the collection separated into individual values. Quoted values will not be split, and the quotes will be removed.

Arguments:
Return type:

System.String<System.String>[]

Returns:

the associated values from the collection separated into individual values, or StringValues.Empty if the key is not present.

public static string[] GetCommaSeparatedValues(this IHeaderDictionary headers, string key)
SetCommaSeparatedValues(Microsoft.AspNetCore.Http.IHeaderDictionary, System.String, System.String[])

Quotes any values containing comas, and then coma joins all of the values.

Arguments:
public static void SetCommaSeparatedValues(this IHeaderDictionary headers, string key, params string[] values)