Visual Basic (Declaration) | |
---|---|
<DartDescriptionAttribute("Event raised when the user selects file(s) to be uploaded.")> <CategoryAttribute("Action")> Public Event FileSelected As FileSelectedEventHandler |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As UploadManager Dim handler As FileSelectedEventHandler AddHandler instance.FileSelected, handler |
C# | |
---|---|
[DartDescriptionAttribute("Event raised when the user selects file(s) to be uploaded.")] [CategoryAttribute("Action")] public event FileSelectedEventHandler FileSelected |
C++/CLI | |
---|---|
[DartDescriptionAttribute("Event raised when the user selects file(s) to be uploaded.")] [CategoryAttribute("Action")] public: event FileSelectedEventHandler^ FileSelected |
The event handler receives an argument of type FileSelectedEventArgs containing data related to this event. The following FileSelectedEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Files | Gets an array of filenames selected. |
UploadID | Gets the UploadID associated with the selected files. |
Target Platforms: Microsoft .NET Framework 2.0