IReadableStringCollection Interface
Accessors for headers, query, forms, etc.
Namespace: Microsoft.Owin
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Syntax
public interface IReadableStringCollection : IEnumerable<KeyValuePair<string, string[]>>,
IEnumerable
public interface class IReadableStringCollection : IEnumerable<KeyValuePair<String^, array<String^>^>>,
IEnumerable
type IReadableStringCollection =
interface
interface IEnumerable<KeyValuePair<string, string[]>>
interface IEnumerable
end
Public Interface IReadableStringCollection
Inherits IEnumerable(Of KeyValuePair(Of String, String())), IEnumerable
Properties
Name | Description | |
---|---|---|
Item[String] | Get the associated value from the collection. Multiple values will be merged. Returns null if the key is not present. |
Methods
Name | Description | |
---|---|---|
Get(String) | Get the associated value from the collection. Multiple values will be merged. Returns null if the key is not present. |
|
GetEnumerator() | (Inherited from IEnumerable<T>.) |
|
GetValues(String) | Get the associated values from the collection in their original format. Returns null if the key is not present. |
See Also
Return to top