VaultFolderCreate.DocumentSvc.DocumentService.AddFileAsync C# (CSharp) Méthode

AddFileAsync() public méthode

public AddFileAsync ( long folderId, string fileName, string comment, System lastWrite, long dependFileIds, string dependSources, long attachFileIds, string attachSources, BOM bom, FileClassification fileClassification, bool hidden, byte fileContents ) : void
folderId long
fileName string
comment string
lastWrite System
dependFileIds long
dependSources string
attachFileIds long
attachSources string
bom BOM
fileClassification FileClassification
hidden bool
fileContents byte
Résultat void
        public void AddFileAsync(long folderId, string fileName, string comment, System.DateTime lastWrite, long[] dependFileIds, string[] dependSources, long[] attachFileIds, string[] attachSources, BOM bom, FileClassification fileClassification, bool hidden, byte[] fileContents) {
            this.AddFileAsync(folderId, fileName, comment, lastWrite, dependFileIds, dependSources, attachFileIds, attachSources, bom, fileClassification, hidden, fileContents, null);
        }
        

Same methods

DocumentService::AddFileAsync ( long folderId, string fileName, string comment, System lastWrite, long dependFileIds, string dependSources, long attachFileIds, string attachSources, BOM bom, FileClassification fileClassification, bool hidden, byte fileContents, object userState ) : void
DocumentService