Context
A readonly dictionary of string key / object value pairs
using System.Collections.Generic;
using System.Collections.ObjectModel;
namespace Polly
{
public class Context : ReadOnlyDictionary<string, object>
{
internal static readonly Context Empty = new Context(new Dictionary<string, object>());
internal Context(IDictionary<string, object> values)
: base(values)
{
}
}
}