AppendExceptionHandler メソッド
| 編集/提案 ソースを表示AppendExceptionHandler(IPipeline, PipelineExtensions.ProcessFunc<(Exception exception, Object arg), Object>)
指定された例外の処理を行うデリゲートを指定されたパイプラインの末尾に追加します。
宣言
public static IPipeline AppendExceptionHandler(this IPipeline pipeline, PipelineExtensions.ProcessFunc<(Exception exception, object arg), object> processFunc)
引数
型 | 名前 | 説明 |
---|---|---|
IPipeline | pipeline | 登録先のパイプラインです。 |
PipelineExtensions.ProcessFunc<System.ValueTuple<System.Exception, System.Object>, System.Object> | processFunc | 追加する処理です。処理を再試行するには |
戻り値
型 | 説明 |
---|---|
IPipeline |
|
例外
型 | 条件 |
---|---|
System.ArgumentNullException |
AppendExceptionHandler<TParam, TResult>(IPipeline, PipelineExtensions.ProcessFunc<(Exception exception, TParam arg), TResult>)
指定された例外の処理を行うデリゲートを指定されたパイプラインの末尾に追加します。
宣言
public static IPipeline AppendExceptionHandler<TParam, TResult>(this IPipeline pipeline, PipelineExtensions.ProcessFunc<(Exception exception, TParam arg), TResult> processFunc)
引数
型 | 名前 | 説明 |
---|---|---|
IPipeline | pipeline | 登録先のパイプラインです。 |
PipelineExtensions.ProcessFunc<System.ValueTuple<System.Exception, TParam>, TResult> | processFunc | 追加する処理です。処理を再試行するには |
戻り値
型 | 説明 |
---|---|
IPipeline |
|
型引数
名前 | 説明 |
---|---|
TParam | 追加する処理の引数の種類です。 |
TResult | 追加する処理の戻り値の種類です。 |
例外
型 | 条件 |
---|---|
System.ArgumentNullException |