SlickUpload Documentation
- Installation
- Configuration
- Quick Start Guide
- How To
- Concepts
- Troubleshooting
- FAQ/Known Issues
- Upgrading
- Client Reference
-
Server Reference
- Class reference syntax
- Installing the license
- SlickUpload Namespaces
- Krystalware.SlickUpload.Configuration
- Krystalware.SlickUpload.Storage
- Krystalware.SlickUpload.Storage.Streams
- Krystalware.SlickUpload.Web
- Krystalware.SlickUpload.Web.Controls
- Krystalware.SlickUpload.Web.Controls.Design
- Krystalware.SlickUpload.Web.Handlers
- Krystalware.SlickUpload.Web.Mvc
- Krystalware.SlickUpload.Web.SessionStorage
UploadedFile Class
Provides information about a file that has been uploaded. All files are streamed to an upload location as they arrive. Each UploadedFile instance contains information about a single uploaded file.
Members
- ClientName – String
-
Gets the file name of the uploaded file as it was on the client machine.
- ContentLength – Int64
-
Gets the length (in bytes) of the uploaded file.
- ContentType – String
-
Gets the MIME content type of the uploaded file, as passed by the client browser.
- Data – Dictionary<String, String>
-
Gets information about the file, including form values for the file and information set by the upload process.
- FileSelectorId – String
-
Gets the ID of the FileSelector used to select this file, or null if no file selector was used.
- ServerLocation – String
-
Gets the server location where this file was written
- SourceElement – String
-
Gets the name of the source form input element where the file was selected.
- UploadHttpRequest – UploadHttpRequest
-
Gets the current UploadedFile.UploadHttpRequest that contains this file, or null if the upload has already been completed.
- UploadRequest – UploadRequest
-
Gets the UploadedFile.UploadRequest that contained this file.