FormCollection Class

Definition

Contains the parsed form values.

public class FormCollection : Microsoft.Owin.ReadableStringCollection, Microsoft.Owin.IFormCollection, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,string[]>>
type FormCollection = class
    inherit ReadableStringCollection
    interface IFormCollection
    interface IReadableStringCollection
    interface seq<KeyValuePair<string, string[]>>
    interface IEnumerable
Public Class FormCollection
Inherits ReadableStringCollection
Implements IEnumerable(Of KeyValuePair(Of String, String())), IFormCollection
Inheritance
Implements

Constructors

FormCollection(IDictionary<String,String[]>)

Initializes a new instance of the FormCollection class.

Properties

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

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)
GetEnumerator() (Inherited from ReadableStringCollection)
GetValues(String)

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

(Inherited from ReadableStringCollection)

Explicit Interface Implementations

IEnumerable.GetEnumerator() (Inherited from ReadableStringCollection)

Applies to