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: - headers (Microsoft.AspNetCore.Http.IHeaderDictionary) – The
Microsoft.AspNetCore.Http.IHeaderDictionary
to use. - key (System.String) – The header name.
- value (Microsoft.Extensions.Primitives.StringValues) – The header value.
public static void Append(this IHeaderDictionary headers, string key, StringValues value)
- headers (Microsoft.AspNetCore.Http.IHeaderDictionary) – The
-
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: - headers (Microsoft.AspNetCore.Http.IHeaderDictionary) – The
Microsoft.AspNetCore.Http.IHeaderDictionary
to use. - key (System.String) – The header name.
- values (System.String<System.String>[]) – The header values.
public static void AppendCommaSeparatedValues(this IHeaderDictionary headers, string key, params string[] values)
- headers (Microsoft.AspNetCore.Http.IHeaderDictionary) – The
-
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: - headers (Microsoft.AspNetCore.Http.IHeaderDictionary) – The
Microsoft.AspNetCore.Http.IHeaderDictionary
to use. - key (System.String) – The header name.
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)
- headers (Microsoft.AspNetCore.Http.IHeaderDictionary) – The
-
SetCommaSeparatedValues
(Microsoft.AspNetCore.Http.IHeaderDictionary, System.String, System.String[])¶ Quotes any values containing comas, and then coma joins all of the values.
Arguments: - headers (Microsoft.AspNetCore.Http.IHeaderDictionary) – The
Microsoft.AspNetCore.Http.IHeaderDictionary
to use. - key (System.String) – The header name.
- values (System.String<System.String>[]) – The header values.
public static void SetCommaSeparatedValues(this IHeaderDictionary headers, string key, params string[] values)
- headers (Microsoft.AspNetCore.Http.IHeaderDictionary) – The
-