VintaSoft Imaging .NET SDK 15.1: Documentation for Web developer
Vintasoft.Imaging.AspNetCore.ApiControllers Namespace / VintasoftFileApiController Class / UploadImageFiles(String,List<IFormFile>) Method
Syntax Remarks Requirements SeeAlso
In This Topic
UploadImageFiles(String,List<IFormFile>) Method (VintasoftFileApiController)
In This Topic
Uploads image files to the server.
Syntax
'Declaration

<HttpPostAttribute("HttpMethods = System.Collections.Generic.List`1string", "Template = null", "Order = 0", "Name = null")>
Public Overridable Function UploadImageFiles( _
ByVal sessionId
The session identifier.
As String, _
ByVal files
An array with files, which are sent with HTTP request.
As System.Collections.Generic.List(Of IFormFile) _
) As Vintasoft.Imaging.Web.Services.UploadImageFilesResponseParams
[HttpPost("HttpMethods = System.Collections.Generic.List`1string", "Template = null", "Order = 0", "Name = null")]
public virtual Vintasoft.Imaging.Web.Services.UploadImageFilesResponseParams UploadImageFiles(
string sessionId,
System.Collections.Generic.List<IFormFile> files
)

Parameters

sessionId
The session identifier.
files
An array with files, which are sent with HTTP request.

Return Value

Response from the server.
Remarks

Uploaded image files will be stored in the data storage on server.

Requirements

Target Platforms: .NET 10; .NET 9; .NET 8; .NET 7, .NET 6

See Also