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

CheckinFile() private method

private CheckinFile ( 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, [ DataType = "base64Binary")]byte[]fileContents ) : File
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
DataType [
return File
        public File CheckinFile(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, [System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary")] byte[] fileContents) {
            object[] results = this.Invoke("CheckinFile", new object[] {
                        fileMasterId,
                        comment,
                        keepCheckedOut,
                        lastWrite,
                        dependFileIds,
                        dependSources,
                        attachFileIds,
                        attachSources,
                        bom,
                        copyBom,
                        newFileName,
                        fileClassification,
                        hidden,
                        fileContents});
            return ((File)(results[0]));
        }
        
DocumentService