try、catch、finallyblockの機能があります。例外がキャッチされた場合、エラーコード、エラー詳細メッセージ、メッセージなど、その例外の特定のパラメーターをキャッチし、Excelファイルに出力します。以下に関連するコードを投稿しています:
public void UpdateGroup(String strSiteID, String strGroup, int row)
{
try
{
Console.WriteLine("UpdateGroup");
Excel1.MWMClient.MWMServiceProxy.Group group = new Excel1.MWMClient.MWMServiceProxy.Group();
group.name = "plumber";
group.description = "he is a plumber";
Console.WriteLine(groupClient.UpdateGroup(strSiteID,group));
ExcelRecorder(0, null, null, row);
}
catch (System.ServiceModel.FaultException<DefaultFaultContract> ex)
{
ExcelRecorder(ex.Detail.ErrorCode, ex.Detail.Message, ex.Message, row);
}
finally
{
System.GC.Collect();
}
}
public void ExcelRecorder(int error, string detailmessage, string message, int row)
{
Excel.Application xlApp = new Excel.Application();
Excel.Workbook xlWorkbook = xlApp.Workbooks.Open(@"D:/WebServiceTestCases_Output.xlsx");
Excel._Worksheet xlWorksheet = xlWorkbook.Sheets[1];
Excel.Range xlRange = xlWorksheet.UsedRange;
if (!string.IsNullOrEmpty(message))
{
((Range)xlWorksheet.Cells[row, "M"]).Value2 = "FAIL";
((Range)xlWorksheet.Cells[row, "N"]).Value2 = error;
((Range)xlWorksheet.Cells[row, "O"]).Value2 = detailmessage;
((Range)xlWorksheet.Cells[row, "P"]).Value2 = message;
}
else
{
((Range)xlWorksheet.Cells[row, "M"]).Value2 = "PASS";
((Range)xlWorksheet.Cells[row, "N"]).Value2 = "";
((Range)xlWorksheet.Cells[row, "O"]).Value2 = "";
((Range)xlWorksheet.Cells[row, "P"]).Value2 = "";
}
xlWorkbook.Save();
xlWorkbook.Close(0,0,0);
xlApp.Quit();
}
問題は、以前は次のようなコードを持っていたということです
catch(Exception ex)
{
ExcelRecorder(ex.Message);
}
その時、すべての例外が捕らえられていました。しかし、後でエラー詳細コードとエラー詳細メッセージもキャプチャする必要があったため、要件が変更されました。そこで、catchブロックをcatch(System.ServiceModel.FaultException ex)に変更しました。これにより、これらのパラメーターをフェッチできるようになりました。しかし現在、特定の例外がキャッチブロックに捕らえられていません。すべての例外をキャッチできるように、catchブロックを変更するにはどうすればよいですか?