Skip to main content

ASPxHtmlEditorImageUploadSettings.UseAdvancedUploadMode Property

Gets or sets a value specifying whether the advanced upload mode is used.

Namespace: DevExpress.Web.ASPxHtmlEditor

Assembly: DevExpress.Web.ASPxHtmlEditor.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(true)]
public bool UseAdvancedUploadMode { get; set; }

Property Value

Type Default Description
Boolean true

true if the advanced upload mode is used; false if the standard upload mode is used.

Property Paths

You can access this nested property as listed below:

Object Type Path to UseAdvancedUploadMode
HtmlEditorInsertImageDialogSettings
.SettingsImageUpload .UseAdvancedUploadMode

Remarks

Use the UseAdvancedUploadMode property to choose from two provided upload modes:

  • In the Standard Mode, the uploaded file is sent to the server in one request and is cached in its entirety in server memory.
  • In the Advanced Mode, the uploaded file is sent to the server in small packets (one by one) and is saved in a temporary file within a specific server folder.

To learn more about upload modes, see the Upload Modes topic.

See Also