VintaSoft Imaging .NET SDK 15.0: Documentation for Web developer
Vintasoft.Imaging.Web.Services Namespace / VintasoftFileWebService Class / UploadImageFiles(Stream[],String[]) Method
Syntax Exceptions Remarks Requirements SeeAlso
In This Topic
    UploadImageFiles(Stream[],String[]) Method (VintasoftFileWebService)
    In This Topic
    Uploads the image files to the server.
    Syntax
    'Declaration
    
    Public Function UploadImageFiles( _
    ByVal streams
    The streams, which contain the files data.
    () As System.IO.Stream, _
    ByVal fileNames
    The names of uploading files.
    () As String _
    ) As UploadImageFilesResponseParams
    public:
    UploadImageFilesResponseParams^ UploadImageFiles(
    array<System.IO.Stream^>^ streams,
    array<string^>^ fileNames
    )

    Parameters

    streams
    The streams, which contain the files data.
    fileNames
    The names of uploading files.

    Return Value

    Response from the server.
    Exceptions
    ExceptionDescription
    Thrown if streams and fileNames have different length.
    Remarks

    Method saves each of uploaded image files to the SessionDataStorage.

    Requirements

    Target Platforms: .NET 10; .NET 9; .NET 8; .NET 7, .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5

    See Also