コード例 #1
0
ファイル: AuditLogController.cs プロジェクト: KKPBank/CSM
 private async Task ExportDailySRReport()
 {
     using (var client = new CSMSRServiceClient())
     {
         Task <ExportSRTaskResponse> t      = client.DailySRReportAsync();
         ExportSRTaskResponse        result = await t;
     }
 }
コード例 #2
0
 private async Task ExportDailySRReport()
 {
     using (var client = new CSMSRServiceClient())
     {
         Task <CSM.Service.Messages.SchedTask.ExportSRTaskResponse> t      = client.DailySRReportAsync();
         CSM.Service.Messages.SchedTask.ExportSRTaskResponse        result = await t.ConfigureAwait(false);
     }
 }