Class UploadFile
- Namespace
- SunamoHttp.Data
- Assembly
- SunamoHttp.dll
Represents a file to be uploaded via HTTP
public class UploadFile
- Inheritance
-
UploadFile
- Inherited Members
- Extension Methods
Constructors
UploadFile()
Initializes a new instance of the UploadFile class
public UploadFile()
Properties
ContentType
Gets or sets the content type of the uploaded file
public string ContentType { get; set; }
Property Value
Filename
Gets or sets the filename of the uploaded file
public string? Filename { get; set; }
Property Value
Name
Gets or sets the form field name for the uploaded file
public string? Name { get; set; }
Property Value
Stream
Gets or sets the stream containing the file data
public Stream? Stream { get; set; }