IReadableStringCollection Interface
Accessors for headers, query, forms, etc.
Namespace: Microsoft.Owin
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Syntax
'Declaration
Public Interface IReadableStringCollection _
Inherits IEnumerable(Of KeyValuePair(Of String, String())), _
IEnumerable
'Usage
Dim instance As IReadableStringCollection
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 extends IEnumerable<KeyValuePair<String, String[]>>, IEnumerable
The IReadableStringCollection type exposes the following members.
Properties
Name | Description | |
---|---|---|
Item | Get the associated value from the collection. Multiple values will be merged. Returns null if the key is not present. |
Top
Methods
Name | Description | |
---|---|---|
Get | Get the associated value from the collection. Multiple values will be merged. Returns null if the key is not present. | |
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. |
Top