FormCollection Class

Contains the form value providers for the application.

Inheritance Hierarchy

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

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

Syntax

'Declaration
Public Class FormCollection _
    Inherits ReadableStringCollection _
    Implements IFormCollection, IReadableStringCollection, IEnumerable(Of KeyValuePair(Of String, String())),  _
    IEnumerable
'Usage
Dim instance As FormCollection
public class FormCollection : ReadableStringCollection, 
    IFormCollection, IReadableStringCollection, IEnumerable<KeyValuePair<string, string[]>>, 
    IEnumerable
public ref class FormCollection : public 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 extends ReadableStringCollection implements IFormCollection, IReadableStringCollection, IEnumerable<KeyValuePair<String, String[]>>, IEnumerable

The FormCollection type exposes the following members.

Constructors

  Name Description
Public method FormCollection Initializes a new instance of the FormCollection class.

Top

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

Top

Methods

  Name Description
Public method Equals (Inherited from Object.)
Protected method Finalize (Inherited from Object.)
Public method Get Get the associated value from the collection. Multiple values will be merged. Returns null if the key is not present. (Inherited from ReadableStringCollection.)
Public method GetEnumerator (Inherited from ReadableStringCollection.)
Public method GetHashCode (Inherited from Object.)
Public method GetType (Inherited from Object.)
Public method GetValues Get the associated values from the collection in their original format. Returns null if the key is not present. (Inherited from ReadableStringCollection.)
Protected method MemberwiseClone (Inherited from Object.)
Public method ToString (Inherited from Object.)

Top

Explicit Interface Implementations

  Name Description
Explicit interface implemetationPrivate method IEnumerable.GetEnumerator (Inherited from ReadableStringCollection.)

Top

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

Reference

Microsoft.Owin Namespace