UploadAsyncSettingsBuilder
Methods
Save(System.String,System.String,Microsoft.AspNetCore.Routing.RouteValueDictionary)
Sets the action, controller and route values for the save operation
Parameters
actionName - System.String
Name of the action.
controllerName - System.String
Name of the controller.
routeValues - Microsoft.AspNetCore.Routing.RouteValueDictionary
The route values.
Example
@( Html.Kendo().Upload()
.Name("Upload")
.Async(async => async
.Save("Save", "Home", new RouteValueDictionary{ {"id", 1} })
)
)
Save(System.String,System.String,System.Object)
Sets the action, controller and route values for the save operation
Parameters
actionName - System.String
Name of the action.
controllerName - System.String
Name of the controller.
routeValues - System.Object
The route values.
Example
@( Html.Kendo().Upload()
.Name("Upload")
.Async(async => async
.Save("Save", "Home", new { id = 1 })
)
)
Save(System.String,System.String)
Sets the action and controller for the save operation
Parameters
actionName - System.String
Name of the action.
controllerName - System.String
Name of the controller.
Example
@( Html.Kendo().Upload()
.Name("Upload")
.Async(async => async
.Save("Save", "Home")
)
)
Save(System.String)
Sets the route name for the save operation
Parameters
routeName - System.String
Name of the route.
Example
@( Html.Kendo().Upload()
.Name("Upload")
.Async(async => async
.Save("Default")
)
)
Save(Microsoft.AspNetCore.Routing.RouteValueDictionary)
Sets the route values for the save operation
Parameters
routeValues - Microsoft.AspNetCore.Routing.RouteValueDictionary
The route values of the action method.
Example
@( Html.Kendo().Upload()
.Name("Upload")
.Async(async => async
.Save(MVC.Home.Save(1).GetRouteValueDictionary())
)
)
Save(System.String,Microsoft.AspNetCore.Routing.RouteValueDictionary)
Sets the route and values for the save operation
Parameters
routeName - System.String
Name of the route.
routeValues - Microsoft.AspNetCore.Routing.RouteValueDictionary
The route values.
Example
@( Html.Kendo().Upload()
.Name("Upload")
.Async(async => async
.Save("Default", new RouteValueDictionary{ {"id", 1} })
)
)
Save(System.String,System.Object)
Sets the route and values for the save operation
Parameters
routeName - System.String
Name of the route.
routeValues - System.Object
The route values.
Example
@( Html.Kendo().Upload()
.Name("Upload")
.Async(async => async
.Save("Default", new { id = 1 })
)
)
Save(System.Linq.Expressions.Expression)
Sets the action for the save operation
Parameters
controllerAction - System.Linq.Expressions.Expression<Action>
The action.
Example
@( Html.Kendo().Upload()
.Name("Upload")
.Async(async => async
.Save<HomeController>(controller => controller.Save())
)
)
Remove(System.String,System.String,Microsoft.AspNetCore.Routing.RouteValueDictionary)
Sets the action, controller and route values for the remove operation
Parameters
actionName - System.String
Name of the action.
controllerName - System.String
Name of the controller.
routeValues - Microsoft.AspNetCore.Routing.RouteValueDictionary
The route values.
Example
@( Html.Kendo().Upload()
.Name("Upload")
.Async(async => async
.Remove("Remove", "Home", new RouteValueDictionary{ {"id", 1} })
)
)
Remove(System.String,System.String,System.Object)
Sets the action, controller and route values for the remove operation
Parameters
actionName - System.String
Name of the action.
controllerName - System.String
Name of the controller.
routeValues - System.Object
The route values.
Example
@( Html.Kendo().Upload()
.Name("Upload")
.Async(async => async
.Remove("Remove", "Home", new { id = 1 })
)
)
Remove(System.String,System.String)
Sets the action and controller for the remove operation
Parameters
actionName - System.String
Name of the action.
controllerName - System.String
Name of the controller.
Example
@( Html.Kendo().Upload()
.Name("Upload")
.Async(async => async
.Remove("Remove", "Home")
)
)
Remove(System.String)
Sets the route name for the remove operation
Parameters
routeName - System.String
Name of the route.
Example
@( Html.Kendo().Upload()
.Name("Upload")
.Async(async => async
.Remove("Default")
)
)
Remove(Microsoft.AspNetCore.Routing.RouteValueDictionary)
Sets the route values for the remove operation
Parameters
routeValues - Microsoft.AspNetCore.Routing.RouteValueDictionary
The route values of the action method.
Example
@( Html.Kendo().Upload()
.Name("Upload")
.Async(async => async
.Remove(MVC.Home.Remove(1).GetRouteValueDictionary())
)
)
Remove(System.String,Microsoft.AspNetCore.Routing.RouteValueDictionary)
Sets the route and values for the remove operation
Parameters
routeName - System.String
Name of the route.
routeValues - Microsoft.AspNetCore.Routing.RouteValueDictionary
The route values.
Example
@( Html.Kendo().Upload()
.Name("Upload")
.Async(async => async
.Remove("Default", new RouteValueDictionary{ {"id", 1} })
)
)
Remove(System.String,System.Object)
Sets the route and values for the remove operation
Parameters
routeName - System.String
Name of the route.
routeValues - System.Object
The route values.
Example
@( Html.Kendo().Upload()
.Name("Upload")
.Async(async => async
.Remove("Default", new { id = 1 })
)
)
Remove(System.Linq.Expressions.Expression)
Sets the action for the remove operation
Parameters
controllerAction - System.Linq.Expressions.Expression<Action>
The action.
Example
@( Html.Kendo().Upload()
.Name("Upload")
.Async(async => async
.Remove<HomeController>(controller => controller.Remove())
)
)
AutoUpload(System.Boolean)
By default, the selected files are uploaded immediately. To change this behavior, set autoUpload to false.
Parameters
value - System.Boolean
The value for AutoUpload
Batch(System.Boolean)
By default and if supported by the browser, the selected files are uploaded in separate requests. To change this behavior, set batch to true. As a result, all selected files are uploaded in one request.The batch mode applies to multiple files which are selected simultaneously. Files that are selected one after the other are uploaded in separate requests.
Parameters
value - System.Boolean
The value for Batch
Batch()
By default and if supported by the browser, the selected files are uploaded in separate requests. To change this behavior, set batch to true. As a result, all selected files are uploaded in one request.The batch mode applies to multiple files which are selected simultaneously. Files that are selected one after the other are uploaded in separate requests.
ChunkSize(System.Double)
When async.chunkSize is set, the selected files are uploaded chunk by chunk with the declared size. Each request sends a separate file blob and additional string metadata to the server. This metadata is in a stringified JSON format and contains the fileName, relativePath, chunkIndex, contentType, totalFileSize, totalChunks, and uploadUid properties. These properties enable the validation and combination of the file on the server side. The response also returns a JSON object with the uploaded and fileUid properties, which notifies the client what the next chunk is.
Parameters
value - System.Double
The value for ChunkSize
Concurrent(System.Boolean)
By default, the selected files are uploaded one after the other. When async.concurrent is set to true, all selected files start to upload simultaneously.
Parameters
value - System.Boolean
The value for Concurrent
Concurrent()
By default, the selected files are uploaded one after the other. When async.concurrent is set to true, all selected files start to upload simultaneously.
AutoRetryAfter(System.Double)
If async.autoRetryAfter is set, the failed upload request is repeated after the declared amount of time in miliseconds.
Parameters
value - System.Double
The value for AutoRetryAfter
MaxAutoRetries(System.Double)
Sets the maximum number of attempts that are performed if an upload fails.
Parameters
value - System.Double
The value for MaxAutoRetries
RemoveField(System.String)
The name of the form field that is submitted to removeUrl.
Parameters
value - System.String
The value for RemoveField
RemoveUrl(System.String)
The URL of the handler which is responsible for the removal of the uploaded files (if any). The handler must accept POST requests with one or more "fileNames" fields which specify the files that will be deleted.
Parameters
value - System.String
The value for RemoveUrl
RemoveVerb(System.String)
The HTTP verb that will be used by the remove action.
Parameters
value - System.String
The value for RemoveVerb
SaveField(System.String)
The name of the form field which is submitted to saveUrl. The default value is the input name.
Parameters
value - System.String
The value for SaveField
SaveUrl(System.String)
The URL of the handler that will receive the submitted files. The handler must accept POST requests which contain one or more fields with the same name as the original input name.
Parameters
value - System.String
The value for SaveUrl
UseArrayBuffer(System.Boolean)
By default, the files are uploaded as file data. When set to true, the files are read as a file buffer by using FileReader. This buffer is sent in the request body.
Parameters
value - System.Boolean
The value for UseArrayBuffer
UseArrayBuffer()
By default, the files are uploaded as file data. When set to true, the files are read as a file buffer by using FileReader. This buffer is sent in the request body.
WithCredentials(System.Boolean)
Controls whether to send credentials (cookies, headers) for cross-site requests.
Parameters
value - System.Boolean
The value for WithCredentials