#region Using Statements using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Collections; #endregion // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. // For details see: http://anxframework.codeplex.com/license namespace ANX.Framework.Content.Pipeline { public class NamedValueDictionary : IDictionary, ICollection>, IEnumerable>, IEnumerable { public NamedValueDictionary() { throw new NotImplementedException(); } public int Count { get; private set; } public T this[string key] { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } public ICollection Keys { get { throw new NotImplementedException(); } } public ICollection Values { get { throw new NotImplementedException(); } } protected internal virtual Type DefaultSerializerType { get { throw new NotImplementedException(); } } public void Add(string key, T value) { throw new NotImplementedException(); } public void Clear() { throw new NotImplementedException(); } public bool ContainsKey(string key) { throw new NotImplementedException(); } public IEnumerator> GetEnumerator() { throw new NotImplementedException(); } public bool Remove(string key) { throw new NotImplementedException(); } public bool TryGetValue(string key, out T value) { throw new NotImplementedException(); } protected virtual void AddItem(string key, T value) { throw new NotImplementedException(); } protected virtual void ClearItems() { throw new NotImplementedException(); } protected virtual bool RemoveItem(string key) { throw new NotImplementedException(); } protected virtual void SetItem(string key, T value) { throw new NotImplementedException(); } bool ICollection>.IsReadOnly { get { throw new NotImplementedException(); } } void ICollection>.Add(KeyValuePair item) { throw new NotImplementedException(); } bool ICollection>.Contains(KeyValuePair item) { throw new NotImplementedException(); } void ICollection>.CopyTo(KeyValuePair[] array, int arrayIndex) { throw new NotImplementedException(); } IEnumerator IEnumerable.GetEnumerator() { throw new NotImplementedException(); } bool ICollection>.Remove(KeyValuePair item) { throw new NotImplementedException(); } } }