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

CheckinUploadedFile() private method

private CheckinUploadedFile ( long fileMasterId, string comment, bool keepCheckedOut, System lastWrite, long dependFileIds, string dependSources, long attachFileIds, string attachSources, BOM bom, bool copyBom, string newFileName, System uploadIdentifier, FileClassification fileClassification, bool hidden ) : File
fileMasterId long
comment string
keepCheckedOut bool
lastWrite System
dependFileIds long
dependSources string
attachFileIds long
attachSources string
bom BOM
copyBom bool
newFileName string
uploadIdentifier System
fileClassification FileClassification
hidden bool
return File
        public File CheckinUploadedFile(long fileMasterId, string comment, bool keepCheckedOut, System.DateTime lastWrite, long[] dependFileIds, string[] dependSources, long[] attachFileIds, string[] attachSources, BOM bom, bool copyBom, string newFileName, System.Guid uploadIdentifier, FileClassification fileClassification, bool hidden) {
            object[] results = this.Invoke("CheckinUploadedFile", new object[] {
                        fileMasterId,
                        comment,
                        keepCheckedOut,
                        lastWrite,
                        dependFileIds,
                        dependSources,
                        attachFileIds,
                        attachSources,
                        bom,
                        copyBom,
                        newFileName,
                        uploadIdentifier,
                        fileClassification,
                        hidden});
            return ((File)(results[0]));
        }
        
DocumentService