IFormCollection Interface

 

Contains the parsed form values.

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

Syntax

public interface IFormCollection : IReadableStringCollection, 
    IEnumerable<KeyValuePair<string, string[]>>, IEnumerable
public interface class IFormCollection : IReadableStringCollection, 
    IEnumerable<KeyValuePair<String^, array<String^>^>>, IEnumerable
type IFormCollection = 
    interface
        interface IReadableStringCollection
        interface IEnumerable<KeyValuePair<string, string[]>>
        interface IEnumerable
    end
Public Interface IFormCollection
    Inherits IReadableStringCollection, 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.(Inherited from IReadableStringCollection.)

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

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

See Also

Microsoft.Owin Namespace

Return to top