IFormFile Interface
Definition
Represents a file sent with the HttpRequest.
public interface class IFormFile
public interface IFormFile
type IFormFile = interface
Public Interface IFormFile
- Derived
Properties
ContentDisposition |
Gets the raw Content-Disposition header of the uploaded file. |
ContentType |
Gets the raw Content-Type header of the uploaded file. |
FileName |
Gets the file name from the Content-Disposition header. |
Headers |
Gets the header dictionary of the uploaded file. |
Length |
Gets the file length in bytes. |
Name |
Gets the form field name from the Content-Disposition header. |
Methods
CopyTo(Stream) |
Copies the contents of the uploaded file to the |
CopyToAsync(Stream, CancellationToken) |
Asynchronously copies the contents of the uploaded file to the |
OpenReadStream() |
Opens the request stream for reading the uploaded file. |