IWrappedDictionary interface IWrappedDictionary : IDictionary, ICollection, IEnumerable Documentation Code using System.Collections; namespace Newtonsoft.Json.Utilities { internal interface IWrappedDictionary : IDictionary, ICollection, IEnumerable { object UnderlyingDictionary { get; } } }