FormDataCollection Class
Represent the collection of form data.
Inheritance Hierarchy
System.Object
System.Net.Http.Formatting.FormDataCollection
Namespace: System.Net.Http.Formatting
Assembly: System.Net.Http.Formatting (in System.Net.Http.Formatting.dll)
Syntax
'Declaration
Public Class FormDataCollection _
Implements IEnumerable(Of KeyValuePair(Of String, String)), _
IEnumerable
'Usage
Dim instance As FormDataCollection
public class FormDataCollection : IEnumerable<KeyValuePair<string, string>>,
IEnumerable
public ref class FormDataCollection : IEnumerable<KeyValuePair<String^, String^>>,
IEnumerable
type FormDataCollection =
class
interface IEnumerable<KeyValuePair<string, string>>
interface IEnumerable
end
public class FormDataCollection implements IEnumerable<KeyValuePair<String, String>>, IEnumerable
The FormDataCollection type exposes the following members.
Constructors
Name | Description | |
---|---|---|
FormDataCollection(IEnumerable<KeyValuePair<String, String>>) | Initializes a new instance of FormDataCollection class. | |
FormDataCollection(String) | Initializes a new instance of FormDataCollection class. | |
FormDataCollection(Uri) | Initializes a new instance of FormDataCollection class. |
Top
Methods
Name | Description | |
---|---|---|
Equals | (Inherited from Object.) | |
Finalize | (Inherited from Object.) | |
Get | Gets the collection of form data. | |
GetEnumerator | Gets an enumerable that iterates through the collection. | |
GetHashCode | (Inherited from Object.) | |
GetType | (Inherited from Object.) | |
GetValues | Gets the values of the collection of form data. | |
MemberwiseClone | (Inherited from Object.) | |
ReadAsNameValueCollection | Reads the collection of form data as a collection of name value. | |
ToString | (Inherited from Object.) |
Top
Extension Methods
Name | Description | |
---|---|---|
ReadAs(Type) | Overloaded. Reads the collection extensions with specified type. (Defined by FormDataCollectionExtensions.) | |
ReadAs(Type, String, IRequiredMemberSelector, IFormatterLogger) | Overloaded. Reads the collection extensions with specified type and model name. (Defined by FormDataCollectionExtensions.) | |
ReadAs<T>() | Overloaded. Reads the collection extensions with specified type. (Defined by FormDataCollectionExtensions.) | |
ReadAs<T>(String, IRequiredMemberSelector, IFormatterLogger) | Overloaded. Reads the collection extensions with specified type. (Defined by FormDataCollectionExtensions.) |
Top
Explicit Interface Implementations
Name | Description | |
---|---|---|
IEnumerable.GetEnumerator | Gets an enumerable that iterates through the collection. |
Top
Remarks
No content here will be updated; please do not add material here.
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.