IHeaderDictionary Interface
A wrapper for Headers and Headers.
Namespace: Microsoft.Owin
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Syntax
'Declaration
Public Interface IHeaderDictionary _
Inherits IReadableStringCollection, IDictionary(Of String, String()), _
ICollection(Of KeyValuePair(Of String, String())), _
IEnumerable(Of KeyValuePair(Of String, String())), _
IEnumerable
'Usage
Dim instance As IHeaderDictionary
public interface IHeaderDictionary : IReadableStringCollection,
IDictionary<string, string[]>, ICollection<KeyValuePair<string, string[]>>,
IEnumerable<KeyValuePair<string, string[]>>, IEnumerable
public interface class IHeaderDictionary : IReadableStringCollection,
IDictionary<String^, array<String^>^>, ICollection<KeyValuePair<String^, array<String^>^>>,
IEnumerable<KeyValuePair<String^, array<String^>^>>,
IEnumerable
type IHeaderDictionary =
interface
interface IReadableStringCollection
interface IDictionary<string, string[]>
interface ICollection<KeyValuePair<string, string[]>>
interface IEnumerable<KeyValuePair<string, string[]>>
interface IEnumerable
end
public interface IHeaderDictionary extends IReadableStringCollection, IDictionary<String, String[]>, ICollection<KeyValuePair<String, String[]>>, IEnumerable<KeyValuePair<String, String[]>>, IEnumerable
The IHeaderDictionary type exposes the following members.
Properties
Name | Description | |
---|---|---|
Count | (Inherited from ICollection<KeyValuePair<String, array<String[]>>.) | |
IsReadOnly | (Inherited from ICollection<KeyValuePair<String, array<String[]>>.) | |
Item | Gets or sets the header with the specified key. | |
Keys | (Inherited from IDictionary<String, array<String[]>.) | |
Values | (Inherited from IDictionary<String, array<String[]>.) |
Top
Methods
Name | Description | |
---|---|---|
Add(T) | (Inherited from ICollection<KeyValuePair<String, array<String[]>>.) | |
Add(TKey, TValue) | (Inherited from IDictionary<String, array<String[]>.) | |
Append | Adds the specified header to the dictionary. | |
AppendCommaSeparatedValues | Adds the header values to the dictionary as a comma-separated value. | |
AppendValues | Adds the header values to the dictionary unmodified. | |
Clear | (Inherited from ICollection<KeyValuePair<String, array<String[]>>.) | |
Contains | (Inherited from ICollection<KeyValuePair<String, array<String[]>>.) | |
ContainsKey | (Inherited from IDictionary<String, array<String[]>.) | |
CopyTo | (Inherited from ICollection<KeyValuePair<String, array<String[]>>.) | |
Get | Get the associated value from the collection. Multiple values will be merged. Returns null if the key is not present. (Inherited from IReadableStringCollection.) | |
GetCommaSeparatedValues | Parses out comma separated headers into individual values. Quoted values will not be coma split, and the quotes will be removed. | |
GetEnumerator | (Inherited from IEnumerable<KeyValuePair<String, array<String[]>>.) | |
GetValues | Get the associated values from the collection in their original format. Returns null if the key is not present. (Inherited from IReadableStringCollection.) | |
Remove(TKey) | (Inherited from IDictionary<String, array<String[]>.) | |
Remove(T) | (Inherited from ICollection<KeyValuePair<String, array<String[]>>.) | |
Set | Assigns a new header value for the specified key. | |
SetCommaSeparatedValues | Assigns the header values to the dictionary as a comma-separated value. | |
SetValues | Assigns the header values to the dictionary unmodified. | |
TryGetValue | (Inherited from IDictionary<String, array<String[]>.) |
Top