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

AddFile() private méthode

private AddFile ( long folderId, string fileName, string comment, System lastWrite, long dependFileIds, string dependSources, long attachFileIds, string attachSources, BOM bom, FileClassification fileClassification, bool hidden, [ DataType = "base64Binary")]byte[]fileContents ) : File
folderId long
fileName string
comment string
lastWrite System
dependFileIds long
dependSources string
attachFileIds long
attachSources string
bom BOM
fileClassification FileClassification
hidden bool
DataType [
Résultat File
        public File AddFile(long folderId, string fileName, string comment, System.DateTime lastWrite, long[] dependFileIds, string[] dependSources, long[] attachFileIds, string[] attachSources, BOM bom, FileClassification fileClassification, bool hidden, [System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary")] byte[] fileContents) {
            object[] results = this.Invoke("AddFile", new object[] {
                        folderId,
                        fileName,
                        comment,
                        lastWrite,
                        dependFileIds,
                        dependSources,
                        attachFileIds,
                        attachSources,
                        bom,
                        fileClassification,
                        hidden,
                        fileContents});
            return ((File)(results[0]));
        }
        
DocumentService