@@ -17,7 +17,6 @@ public abstract class ResiliencePipelineProvider<TKey>
1717 /// <param name="key">The key used to identify the resilience pipeline.</param>
1818 /// <returns>The resilience pipeline associated with the specified key.</returns>
1919 /// <exception cref="KeyNotFoundException">Thrown when no resilience pipeline is found for the specified key.</exception>
20- /// <exception cref="ObjectDisposedException">Thrown when the provider is already disposed.</exception>
2120 public virtual ResiliencePipeline GetPipeline ( TKey key )
2221 {
2322 if ( TryGetPipeline ( key , out var pipeline ) )
@@ -36,7 +35,6 @@ public virtual ResiliencePipeline GetPipeline(TKey key)
3635 /// <param name="key">The key used to identify the resilience pipeline.</param>
3736 /// <returns>The resilience pipeline associated with the specified key.</returns>
3837 /// <exception cref="KeyNotFoundException">Thrown when no resilience pipeline is found for the specified key.</exception>
39- /// <exception cref="ObjectDisposedException">Thrown when the provider is already disposed.</exception>
4038 public virtual ResiliencePipeline < TResult > GetPipeline < TResult > ( TKey key )
4139 {
4240 if ( TryGetPipeline < TResult > ( key , out var pipeline ) )
@@ -54,7 +52,6 @@ public virtual ResiliencePipeline<TResult> GetPipeline<TResult>(TKey key)
5452 /// <param name="key">The key used to identify the resilience pipeline.</param>
5553 /// <param name="pipeline">The output resilience pipeline if found, <see langword="null"/> otherwise.</param>
5654 /// <returns><see langword="true"/> if the pipeline was found, <see langword="false"/> otherwise.</returns>
57- /// <exception cref="ObjectDisposedException">Thrown when the provider is already disposed.</exception>
5855 public abstract bool TryGetPipeline ( TKey key , [ NotNullWhen ( true ) ] out ResiliencePipeline ? pipeline ) ;
5956
6057 /// <summary>
@@ -64,6 +61,5 @@ public virtual ResiliencePipeline<TResult> GetPipeline<TResult>(TKey key)
6461 /// <param name="key">The key used to identify the resilience pipeline.</param>
6562 /// <param name="pipeline">The output resilience pipeline if found, <see langword="null"/> otherwise.</param>
6663 /// <returns><see langword="true"/> if the pipeline was found, <see langword="false"/> otherwise.</returns>
67- /// <exception cref="ObjectDisposedException">Thrown when the provider is already disposed.</exception>
6864 public abstract bool TryGetPipeline < TResult > ( TKey key , [ NotNullWhen ( true ) ] out ResiliencePipeline < TResult > ? pipeline ) ;
6965}
0 commit comments