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
Public property 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
Public method Get Get the associated value from the collection. Multiple values will be merged. Returns null if the key is not present.
Public method GetEnumerator (Inherited from IEnumerable<KeyValuePair<String, array<String[]>>.)
Public method GetValues Get the associated values from the collection in their original format. Returns null if the key is not present.

Top

See Also

Reference

Microsoft.Owin Namespace