ReadableStringCollection Class

 

Accessors for query, forms, etc.

Namespace:   Microsoft.Owin
Assembly:  Microsoft.Owin (in Microsoft.Owin.dll)

Inheritance Hierarchy

System.Object
  Microsoft.Owin.ReadableStringCollection
    Microsoft.Owin.FormCollection

Syntax

public class ReadableStringCollection : IReadableStringCollection, 
    IEnumerable<KeyValuePair<string, string[]>>, IEnumerable
public ref class ReadableStringCollection : IReadableStringCollection, 
    IEnumerable<KeyValuePair<String^, array<String^>^>>, IEnumerable
type ReadableStringCollection = 
    class
        interface IReadableStringCollection
        interface IEnumerable<KeyValuePair<string, string[]>>
        interface IEnumerable
    end
Public Class ReadableStringCollection
    Implements IReadableStringCollection, IEnumerable(Of KeyValuePair(Of String, String())),
    IEnumerable

Constructors

Name Description
System_CAPS_pubmethod ReadableStringCollection(IDictionary<String, String[]>)

Create a new wrapper

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 Equals(Object)

(Inherited from Object.)

System_CAPS_protmethod Finalize()

(Inherited from Object.)

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()

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_pubmethod GetValues(String)

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

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethod ToString()

(Inherited from Object.)

Explicit Interface Implementations

Name Description
System_CAPS_pubinterfaceSystem_CAPS_privmethod IEnumerable.GetEnumerator()

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Microsoft.Owin Namespace

Return to top