Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Wisej.Web.CaptureMode
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.0.0.0)
Specifies the possible values for the CaptureMode property.
Name | Description |
---|---|
Name | Description |
---|---|
Wisej.Web.Upload
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.0.0.0)
Represent an upload widget. Allows users to selected one or more files and upload them to the server.
String: Specify the types of files that the server accepts (that can be submitted through a file upload).
The allowed files string follows the HTML 4.01 and HTML5 specifications. You can configure only one entry in the browser's file dialog. The syntax is "file_extension|audio/|video/|image/*|media_type" where
file_extension A file extension starting with the dot, e.g: .gif, .jpg, .png, .doc.
audio/* All sound files are accepted
video/* All video files are accepted
image/* All image files are accepted
media_type A valid media type, with no parameters. Look at IANA Media Types for a complete list of standard media types.
Boolean: Returns or sets whether the upload control allows the selection of a directory for upload.
Boolean: Returns or sets whether the upload control allows the selection of multiple files.
ContentAlignment: Returns or sets the position of the upload button relative to the value field..
CaptureMode: Returns or sets a value that specifies which camera to use for capture of image or video data, if the AllowedFileTypes property indicates that the input should be of one of those types.
Boolean: Returns or sets whether the value field is visible.
Image: Returns or sets the icon that is displayed in the upload button in the Upload control.
String: Returns or sets the theme name or URL for the icon to display in the upload button in the Upload control.
Boolean: Returns or sets a value that indicates that the control is invalid.
String: Returns or sets the invalid message that is shown in the invalid tooltip.
Int32: Returns or sets the maximum file size in bytes.
Throws:
ArgumentException The value specified is less than 0.
Boolean: Returns or sets whether the upload control shows a the ajax-loader image when uploading the file(s).
String: Returns or sets the text associated with this control.
ContentAlignment: Returns or sets the alignment of the text on the button control.
String: Returns or sets the text to display in the text fields part of the control.
Aborts the current upload request, if in progress.
Opens the file selection dialog and uploads the files selected by the user.
UploadErrorEventHandler Fired when the Upload control generates an upload error.
UploadProgressEventHandler Fired while the Upload control receives the data being uploaded.
This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.
UploadedEventHandler Fired when files are uploaded to the Upload control.
UploadingEventHandler Fired before the Upload control received the files being uploaded.
This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event. You can abort the uploading process by setting e.Cancel = true in the event handler.
EventHandler Fired when the user has selected the files to upload.
Wisej.Web.UploadingEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.0.0.0)
Provides data for the Uploading event.
Initializes a new instance of the UploadingEventArgs class with the specified collection of uploaded files.
Name | Type | Description |
---|---|---|
String[]: Returns an array containing the names of the files being uploaded.
Int32[]: Returns an array containing the sizes in bytes of the files being uploaded.
Wisej.Web.UploadErrorEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.0.0.0)
Provides data for the Error event.
Initializes a new instance of the UploadErrorEventArgs class with the specified error message.
Name | Type | Description |
---|---|---|
UploadErrorType: Returns the error type.
String[]: List of file names that failed to upload.
Int32[]: List of file sizes that failed to upload.
String: Returns the error message.
Wisej.Web.UploadedEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.0.0.0)
Provides data for the Uploaded event.
Initializes a new instance of the UploadedEventArgs class with the specified collection of uploaded files.
Name | Type | Description |
---|---|---|
HttpFileCollection: Returns the collection of uploaded files.
Name | Description |
---|---|
Wisej.Web.UploadProgressEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.0.0.0)
Provides data for the Progress event.
Initializes a new instance of the UploadProgressEventArgs class with the specified error message.
Name | Type | Description |
---|---|---|
Int64: The number of bytes transferred.
Int64: The total number of bytes of content that will be transferred.
Name | Description |
---|---|
Name | Description |
---|---|
Name | Description |
---|---|
Name | Description |
---|---|
Default
Default value.
Environment
Specifies that the outward-facing camera and/or microphone should be used.
User
Indicates that the user-facing camera and/or microphone should be used.
Returns or sets a value that specifies which camera to use for capture of image or video data, if the AllowedFileTypes property indicates that the input should be of one of those types.
Bindable components implement this interface.
All wisej components implement this interface.
All wisej controls derived from the Control class must implement this interface.
Represents a Wisej component that is capable of handling postback requests from the client.
Allows an object to serialize itself.
FileTooLarge
One of the files being uploaded is too large.
Upload
An error occurred while upload a file.
Returns the error type.
sender
The source of the event.
e
A UploadProgressEventArgs that contains the event data.
Fired while the Upload control receives the data being uploaded.
sender
The source of the event.
e
A UploadErrorEventArgs that contains the event data.
Fired when the Upload control generates an upload error.
sender
The source of the event.
e
A UploadingEventArgs that contains the event data.
Fired before the Upload control received the files being uploaded.
sender
The source of the event.
e
A UploadedEventArgs that contains the event data.
Fired when files are uploaded to the Upload control.
fileNames
A string array containing the named of the files being uploaded.
fileSizes
An integer array containing the sizes of the files being uploaded.
type
The error type, one of UploadErrorType.
message
The error message.
fileNames
The list of files that failed to upload.
fileSizes
The list of files that failed to upload.
files
An instance of HttpFileCollection containing the uploaded files.
loaded
The number of bytes transferred. This doesn't include headers and other overhead, but only the content itself.
total
The total number of bytes of content that will be transferred. If the total size is unknown, this value is zero.