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

CheckinFileAsync() public méthode

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

Same methods

DocumentService::CheckinFileAsync ( long fileMasterId, string comment, bool keepCheckedOut, System lastWrite, long dependFileIds, string dependSources, long attachFileIds, string attachSources, BOM bom, bool copyBom, string newFileName, FileClassification fileClassification, bool hidden, byte fileContents, object userState ) : void
DocumentService