Share via


IFormCollection Interface

Represents an interface of collection of forms.

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

Syntax

'Declaration
Public Interface IFormCollection _
    Inherits IReadableStringCollection, IEnumerable(Of KeyValuePair(Of String, String())),  _
    IEnumerable
'Usage
Dim instance As IFormCollection
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 extends IReadableStringCollection, IEnumerable<KeyValuePair<String, String[]>>, IEnumerable

The IFormCollection type exposes the following members.

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 IReadableStringCollection.)

Top

Methods

  Name Description
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 IReadableStringCollection.)
Public method GetEnumerator (Inherited from IEnumerable<KeyValuePair<String, array<String[]>>.)
Public method GetValues Get the associated values from the collection in their original format. Returns null if the key is not present. (Inherited from IReadableStringCollection.)

Top

See Also

Reference

Microsoft.Owin Namespace