サービスの開始時にいくつかの事前チェックを行い、必要に応じてヘルス エラーを報告しています。
HealthInformation healthInformation = new HealthInformation("Source", "Some error", HealthState.Error);
context.ReportPartitionHealth(healthInformation);
エラー状態のサービスを停止する最善の方法は何ですか?
サービスの開始時にいくつかの事前チェックを行い、必要に応じてヘルス エラーを報告しています。
HealthInformation healthInformation = new HealthInformation("Source", "Some error", HealthState.Error);
context.ReportPartitionHealth(healthInformation);
エラー状態のサービスを停止する最善の方法は何ですか?