FileUploadedEventArgs Constructor |
Namespace:
Atalasoft.Imaging.WebControls
Assembly:
Atalasoft.dotImage.WebControls (in Atalasoft.dotImage.WebControls.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax public FileUploadedEventArgs(
string uploadFilePath,
string fileName,
string mimeType,
bool success = true,
Stream userStream = null,
Exception error = null,
IDictionary<string, string> uploadParams = null
)
Public Sub New (
uploadFilePath As String,
fileName As String,
mimeType As String,
Optional success As Boolean = true,
Optional userStream As Stream = Nothing,
Optional error As Exception = Nothing,
Optional uploadParams As IDictionary(Of String, String) = Nothing
)
Parameters
- uploadFilePath
- Type: SystemString
Relative folder path where the document was saved. - fileName
- Type: SystemString
Name of the uploaded file. - mimeType
- Type: SystemString
MIME type of the uploaded file. - success (Optional)
- Type: SystemBoolean
Flag indicating whether or not operation was successful. - userStream (Optional)
- Type: System.IOStream
User stream from the FileUpload event, where file was saved. - error (Optional)
- Type: SystemException
Exception that occurred during upload operation. - uploadParams (Optional)
- Type: System.Collections.GenericIDictionaryString, String
Optional file upload parameters.
See Also