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

CheckoutFile() private method

private CheckoutFile ( long folderId, long fileMasterId, string machine, string localPath, string comment, bool downloadFile, bool allowSync, [ DataType = "base64Binary")]outbyte[]fileContents ) : File
folderId long
fileMasterId long
machine string
localPath string
comment string
downloadFile bool
allowSync bool
DataType [
return File
        public File CheckoutFile(long folderId, long fileMasterId, string machine, string localPath, string comment, bool downloadFile, bool allowSync, [System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary")] out byte[] fileContents) {
            object[] results = this.Invoke("CheckoutFile", new object[] {
                        folderId,
                        fileMasterId,
                        machine,
                        localPath,
                        comment,
                        downloadFile,
                        allowSync});
            fileContents = ((byte[])(results[1]));
            return ((File)(results[0]));
        }
        
DocumentService