Example #1
0
 /// <summary>
 ///  表结构数据导出文件下载
 /// </summary>
 /// <param name="request">请求参数信息</param>
 /// <returns>请求结果信息</returns>
 public async Task <DownloadExportFileResponse> DownloadExportFile(DownloadExportFileRequest request)
 {
     return(await new DownloadExportFileExecutor().Client(this).Execute <DownloadExportFileResponse, DownloadExportFileResult, DownloadExportFileRequest>(request).ConfigureAwait(false));
 }
Example #2
0
 /// <summary>
 ///  表结构数据导出文件下载
 /// </summary>
 /// <param name="request">请求参数信息</param>
 /// <returns>请求结果信息</returns>
 public DownloadExportFileResponse DownloadExportFile(DownloadExportFileRequest request)
 {
     return(new DownloadExportFileExecutor().Client(this).Execute <DownloadExportFileResponse, DownloadExportFileResult, DownloadExportFileRequest>(request));
 }