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 | |
---|---|---|
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 | |
---|---|---|
Get | Get the associated value from the collection. Multiple values will be merged. Returns null if the key is not present. (Inherited from IReadableStringCollection.) | |
GetEnumerator | (Inherited from IEnumerable<KeyValuePair<String, array<String[]>>.) | |
GetValues | Get the associated values from the collection in their original format. Returns null if the key is not present. (Inherited from IReadableStringCollection.) |
Top