IsPolicy
A marker interface identifying Polly policies of all types, and containing properties common to all policies.
namespace Polly
{
public interface IsPolicy
{
string PolicyKey { get; }
}
}