Share via


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
System_CAPS_pubproperty 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
System_CAPS_pubmethod Get(String)

Get the associated value from the collection. Multiple values will be merged. Returns null if the key is not present.

System_CAPS_pubmethod GetEnumerator()

(Inherited from IEnumerable<T>.)

System_CAPS_pubmethod GetValues(String)

Get the associated values from the collection in their original format. Returns null if the key is not present.

See Also

Microsoft.Owin Namespace

Return to top