Skip to content

Commit

Permalink
Improve debugging experience for ResilienceProperties
Browse files Browse the repository at this point in the history
  • Loading branch information
martintmk committed Aug 29, 2023
1 parent dd511b2 commit 9db08b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Polly.Core/ResilienceProperties.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

namespace Polly;

#pragma warning disable CA1710 // Identifiers should have correct suffix

/// <summary>
/// Represents a collection of custom resilience properties.
/// </summary>
[DebuggerDisplay("{Options}")]
public sealed class ResilienceProperties
{
[DebuggerBrowsable(DebuggerBrowsableState.RootHidden)]
internal IDictionary<string, object?> Options { get; set; } = new Dictionary<string, object?>();

/// <summary>
Expand Down

0 comments on commit 9db08b1

Please sign in to comment.