IReadOnlyPolicyRegistry<TKey> public interface IReadOnlyPolicyRegistry<TKey> : IEnumerable<KeyValuePair<TKey, IsPolicy>>, IEnumerable Documentation Code int Count { get; } IsPolicy this[TKey key] { get; } bool ContainsKey(TKey key) TPolicy Get<TPolicy>(TKey key) where TPolicy : IsPolicy bool TryGet<TPolicy>(TKey key, out TPolicy policy) where TPolicy : IsPolicy