Autodesk Vault ProfessionalVault API

UploadFilePart Method

Autodesk.Connectivity.WebServicesFilestoreService

Uploads the binary content of a file.

Required Permissions

AllowAny

Syntax

public System.byte[] UploadFilePart(
   System.IO.Stream filecontents
)
Public Function UploadFilePart( _
   ByVal filecontents As System.IO.Stream _
) As System.Byte()

Parameters

NameDescription
filecontentsA stream of binary data.

Return Value

The upload ticket.

Remarks

If a file is larger than the maximum part size, this function will need to be called multiple times.

Use the Identity field in FileTransferHeaderValue to append a part to data from previous calls.

See Also