FormCollection Constructor (IDictionary<String, String >)
Initializes a new instance of the FormCollection class.
Namespace: Microsoft.Owin
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Syntax
public FormCollection(
IDictionary<string, string[]> store
)
public:
FormCollection(
IDictionary<String^, array<String^>^>^ store
)
new :
store:IDictionary<string, string[]> -> FormCollection
Public Sub New (
store As IDictionary(Of String, String())
)
Parameters
store
Type: System.Collections.Generic.IDictionary<String, String[]>The store for the form.
See Also
FormCollection Class
Microsoft.Owin Namespace
Return to top