ASP.NET MVC - EJ2

Upgrade Guide User Guide Demos Support Forums Download
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class UploaderAsyncSettings - ASP.NETMVC-EJ2 API Reference | Syncfusion

    Show / Hide Table of Contents

    Class UploaderAsyncSettings

    Inheritance
    System.Object
    TagHelper
    EJTagHelper
    UploaderAsyncSettings
    Inherited Members
    EJTagHelper.GetList()
    EJTagHelper.GetSerializedProperties()
    EJTagHelper.GetScriptString()
    EJTagHelper.GetHtmlAttrString(IDictionary<String, Object>)
    EJTagHelper.TagName
    EJTagHelper.Id
    EJTagHelper.NameSpace
    EJTagHelper.ClassName
    EJTagHelper.IsFor
    EJTagHelper.IsChild
    EJTagHelper.IsCollection
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace: Syncfusion.EJ2.Inputs
    Assembly: Syncfusion.EJ2.dll
    Syntax
    public class UploaderAsyncSettings : EJTagHelper

    Constructors

    UploaderAsyncSettings()

    Declaration
    public UploaderAsyncSettings()

    Properties

    ChunkSize

    Specifies the chunk size to split the large file into chunks, and upload it to the server in a sequential order. If the chunk size property has value, the uploader enables the chunk upload by default. It must be specified in bytes value.

    Declaration
    [HtmlAttributeName("chunkSize")]
    public double ChunkSize { get; set; }
    Property Value
    Type Description
    System.Double

    ContentTemplate

    To get or set value for ContentTemplate.

    Declaration
    public MvcTemplate<object> ContentTemplate { get; set; }
    Property Value
    Type Description
    MvcTemplate<System.Object>

    IsComplex

    Declaration
    protected override bool IsComplex { get; }
    Property Value
    Type Description
    System.Boolean
    Overrides
    EJTagHelper.IsComplex

    ParentPropertyName

    Declaration
    protected override string ParentPropertyName { get; }
    Property Value
    Type Description
    System.String
    Overrides
    EJTagHelper.ParentPropertyName

    RemoveUrl

    Specifies the URL of remove action that receives the file information and handle the remove operation in server. The remove action type must be POST request and define “removeFileNames” attribute to get file information that will be removed. This property is optional.

    Declaration
    [HtmlAttributeName("removeUrl")]
    public string RemoveUrl { get; set; }
    Property Value
    Type Description
    System.String

    RetryAfterDelay

    Specifies the delay time in milliseconds that the automatic retry happens after the delay.

    Declaration
    [HtmlAttributeName("retryAfterDelay")]
    public double RetryAfterDelay { get; set; }
    Property Value
    Type Description
    System.Double

    RetryCount

    Specifies the number of retries that the uploader can perform on the file failed to upload. By default, the uploader set 3 as maximum retries. This property must be specified to prevent infinity looping.

    Declaration
    [HtmlAttributeName("retryCount")]
    public double RetryCount { get; set; }
    Property Value
    Type Description
    System.Double

    SaveUrl

    Specifies the URL of save action that will receive the upload files and save in the server. The save action type must be POST request and define the argument as same input name used to render the component. The upload operations could not perform without this property.

    Declaration
    [HtmlAttributeName("saveUrl")]
    public string SaveUrl { get; set; }
    Property Value
    Type Description
    System.String
    Back to top Generated by DocFX
    Copyright © 2001 - 2022 Syncfusion Inc. All Rights Reserved