MultipartFormDataStreamProvider.FormData Property

 

Gets a NameValueCollection of form data passed as part of the multipart form data.

Namespace:   System.Net.Http
Assembly:  System.Net.Http.Formatting (in System.Net.Http.Formatting.dll)

Syntax

public NameValueCollection FormData {
    [CompilerGeneratedAttribute]
    get;
    [CompilerGeneratedAttribute]
    private set;
}
public:
property NameValueCollection^ FormData {
    [CompilerGeneratedAttribute]
    NameValueCollection^ get();
    [CompilerGeneratedAttribute]
    private: void set(NameValueCollection^ value);
}
member FormData : NameValueCollection with get, private set
Public Property FormData As NameValueCollection
    Get
    Private Set
End Property

Property Value

Type: System.Collections.Specialized.NameValueCollection

The NameValueCollection of form data.

See Also

MultipartFormDataStreamProvider Class
System.Net.Http Namespace

Return to top