Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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 | |
---|---|---|
![]() |
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 | |
---|---|---|
![]() |
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.) |
![]() |
GetEnumerator() | (Inherited from IEnumerable<T>.) |
![]() |
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
Return to top