MultipartFileData.Headers Property

 

Gets or sets the headers of the multipart file data.

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

Syntax

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

Property Value

Type: System.Net.Http.Headers.HttpContentHeaders

The headers of the multipart file data.

See Also

MultipartFileData Class
System.Net.Http Namespace

Return to top