FormCollection Class
Contains the parsed form values.
Namespace: Microsoft.Owin
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Inheritance Hierarchy
System.Object
Microsoft.Owin.ReadableStringCollection
Microsoft.Owin.FormCollection
Syntax
public class FormCollection : ReadableStringCollection, IFormCollection,
IReadableStringCollection, IEnumerable<KeyValuePair<string, string[]>>,
IEnumerable
public ref class FormCollection : ReadableStringCollection, IFormCollection,
IReadableStringCollection, IEnumerable<KeyValuePair<String^, array<String^>^>>,
IEnumerable
type FormCollection =
class
inherit ReadableStringCollection
interface IFormCollection
interface IReadableStringCollection
interface IEnumerable<KeyValuePair<string, string[]>>
interface IEnumerable
end
Public Class FormCollection
Inherits ReadableStringCollection
Implements IFormCollection, IReadableStringCollection, IEnumerable(Of KeyValuePair(Of String, String())),
IEnumerable
Constructors
Name | Description | |
---|---|---|
FormCollection(IDictionary<String, String[]>) | Initializes a new instance of the FormCollection class. |
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 ReadableStringCollection.) |
Methods
Name | Description | |
---|---|---|
Equals(Object) | (Inherited from Object.) |
|
Finalize() | (Inherited from Object.) |
|
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.) |
|
GetHashCode() | (Inherited from Object.) |
|
GetType() | (Inherited from Object.) |
|
GetValues(String) | Get the associated values from the collection in their original format. Returns null if the key is not present.(Inherited from ReadableStringCollection.) |
|
MemberwiseClone() | (Inherited from Object.) |
|
ToString() | (Inherited from Object.) |
Explicit Interface Implementations
Name | Description | |
---|---|---|
IEnumerable.GetEnumerator() | (Inherited from ReadableStringCollection.) |
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
See Also
Return to top