// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.ObjectModel; namespace System.Web.Http { internal class EmptyReadOnlyDictionary { private static readonly ReadOnlyDictionary _value = new ReadOnlyDictionary(new Dictionary()); public static IDictionary Value { get { return _value; } } } }