1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
| public class PropertyCollection : IDictionary<string,AbstractProperty>
{
#region IDictionary<string,AbstractProperty> Membres
public bool ContainsKey(string key)
{
throw new Exception("The method or operation is not implemented.");
}
ICollection<string> IDictionary<string, AbstractProperty>.Keys
{
get { throw new Exception("The method or operation is not implemented."); }
}
public bool Remove(string key)
{
throw new Exception("The method or operation is not implemented.");
}
public bool TryGetValue(string key, out AbstractProperty value)
{
throw new Exception("The method or operation is not implemented.");
}
public ICollection<AbstractProperty> Values
{
get { throw new Exception("The method or operation is not implemented."); }
}
#endregion
#region ICollection<KeyValuePair<string,AbstractProperty>> Membres
public void Add(KeyValuePair<string, AbstractProperty> item)
{
throw new Exception("The method or operation is not implemented.");
}
public bool Contains(KeyValuePair<string, AbstractProperty> item)
{
throw new Exception("The method or operation is not implemented.");
}
public void CopyTo(KeyValuePair<string, AbstractProperty>[] array, int arrayIndex)
{
throw new Exception("The method or operation is not implemented.");
}
public bool IsReadOnly
{
get { throw new Exception("The method or operation is not implemented."); }
}
public bool Remove(KeyValuePair<string, AbstractProperty> item)
{
throw new Exception("The method or operation is not implemented.");
}
#endregion
#region IEnumerable<KeyValuePair<string,AbstractProperty>> Membres
public new IEnumerator<KeyValuePair<string, AbstractProperty>> GetEnumerator()
{
throw new Exception("The method or operation is not implemented.");
}
#endregion
} |