FormCollection Class

 

Contains the parsed form values.

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

Inheritance Hierarchy

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

Syntax

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

Constructors

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

Initializes a new instance of the FormCollection class.

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.(Inherited from ReadableStringCollection.)

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.(Inherited from ReadableStringCollection.)

System_CAPS_pubmethod GetEnumerator()

(Inherited from ReadableStringCollection.)

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.(Inherited from ReadableStringCollection.)

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

(Inherited from ReadableStringCollection.)

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