The maximum total request size allowed (in kilobytes) when multiple files are uploaded.
Syntax
Visual Basic (Declaration) | |
---|
<DefaultValueAttribute()>
<DartDescriptionAttribute("The maximum total request size allowed (in kilobytes) when multiple files are uploaded. When set to 0, all request sizes are allowed, up to the limit imposed by ASP.NET.")>
Public Property MaxRequestSize As Long |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As UploadManager
Dim value As Long
instance.MaxRequestSize = value
value = instance.MaxRequestSize |
C# | |
---|
[DefaultValueAttribute()]
[DartDescriptionAttribute("The maximum total request size allowed (in kilobytes) when multiple files are uploaded. When set to 0, all request sizes are allowed, up to the limit imposed by ASP.NET.")]
public long MaxRequestSize {get; set;} |
C++/CLI | |
---|
[DefaultValueAttribute()]
[DartDescriptionAttribute("The maximum total request size allowed (in kilobytes) when multiple files are uploaded. When set to 0, all request sizes are allowed, up to the limit imposed by ASP.NET.")]
public:
property int64 MaxRequestSize {
int64 get();
void set ( int64 value);
} |
Property Value
The default value is 0.
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 2.0
See Also