VaultFolderCreate.DocumentSvc.DocumentService.AddUploadedFileAsync C# (CSharp) Method

AddUploadedFileAsync() public method

public AddUploadedFileAsync ( long folderId, string fileName, string comment, System lastWrite, long dependFileIds, string dependSources, long attachFileIds, string attachSources, BOM bom, FileClassification fileClass, bool hidden, System uploadIdentifier ) : void
folderId long
fileName string
comment string
lastWrite System
dependFileIds long
dependSources string
attachFileIds long
attachSources string
bom BOM
fileClass FileClassification
hidden bool
uploadIdentifier System
return void
        public void AddUploadedFileAsync(long folderId, string fileName, string comment, System.DateTime lastWrite, long[] dependFileIds, string[] dependSources, long[] attachFileIds, string[] attachSources, BOM bom, FileClassification fileClass, bool hidden, System.Guid uploadIdentifier) {
            this.AddUploadedFileAsync(folderId, fileName, comment, lastWrite, dependFileIds, dependSources, attachFileIds, attachSources, bom, fileClass, hidden, uploadIdentifier, null);
        }
        

Same methods

DocumentService::AddUploadedFileAsync ( long folderId, string fileName, string comment, System lastWrite, long dependFileIds, string dependSources, long attachFileIds, string attachSources, BOM bom, FileClassification fileClass, bool hidden, System uploadIdentifier, object userState ) : void
DocumentService