The global type of upload method to use.
Syntax
Visual Basic (Declaration) | |
---|
<DefaultValueAttribute()>
<DartDescriptionAttribute("The global upload method to use.
Autodetect - determines browser capabilities and chooses the most appropriate method (Flash or IFrame).
Flash - uses an enhanced file dialog facilitated by a Flash object.
IFrame - uses a standard IFrame technique to provide upload functionality without requiring the Flash plugin.")>
Public Property UploadType As UploadType |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As UploadManager
Dim value As UploadType
instance.UploadType = value
value = instance.UploadType |
C# | |
---|
[DefaultValueAttribute()]
[DartDescriptionAttribute("The global upload method to use.
Autodetect - determines browser capabilities and chooses the most appropriate method (Flash or IFrame).
Flash - uses an enhanced file dialog facilitated by a Flash object.
IFrame - uses a standard IFrame technique to provide upload functionality without requiring the Flash plugin.")]
public UploadType UploadType {get; set;} |
C++/CLI | |
---|
[DefaultValueAttribute()]
[DartDescriptionAttribute("The global upload method to use.
Autodetect - determines browser capabilities and chooses the most appropriate method (Flash or IFrame).
Flash - uses an enhanced file dialog facilitated by a Flash object.
IFrame - uses a standard IFrame technique to provide upload functionality without requiring the Flash plugin.")]
public:
property UploadType UploadType {
UploadType get();
void set ( UploadType value);
} |
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 2.0
See Also