MultipartFileData.LocalFileName Property

 

Gets or sets the name of the local file for the multipart file data.

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

Syntax

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

Property Value

Type: System.String

The name of the local file for the multipart file data.

See Also

MultipartFileData Class
System.Net.Http Namespace

Return to top