public Stream GetDocumentByPath(string documentPath, ImageEncodingType outputEncodingType, bool searchable)
        {
            var client = BuildChannel();

            return(client.GetDocumentByPath(documentPath, outputEncodingType, searchable));
        }
 public Task <Stream> GetDocumentByPathAsync(string documentPath, ImageEncodingType outputEncodingType, bool searchable)
 {
     return(base.Channel.GetDocumentByPathAsync(documentPath, outputEncodingType, searchable));
 }
 public Task <ImageTransferObject> CreateMultiPageDocumentAsync(string[] iriList, ImageEncodingType outputEncodingType, bool checkRedactionComplete, bool searchable)
 {
     return(base.Channel.CreateMultiPageDocumentAsync(iriList, outputEncodingType, checkRedactionComplete, searchable));
 }