DataBindingCollection.cs 1.5 KB

123456789101112131415161718192021222324
  1. using System;
  2. using System.ComponentModel.Design;
  3. using System.Web.UI.WebControls;
  4. using System.Collections;
  5. namespace System.Web.UI.Design {
  6. [MonoTODO]
  7. public sealed class DataBindingCollection : ICollection {
  8. [MonoTODO] public DataBindingCollection () { throw new NotImplementedException (); }
  9. [MonoTODO] public void Add (DataBinding binding) { throw new NotImplementedException (); }
  10. [MonoTODO] public void Clear () { throw new NotImplementedException (); }
  11. [MonoTODO] public void CopyTo (Array array, int index) { throw new NotImplementedException (); }
  12. [MonoTODO] public IEnumerator GetEnumerator () { throw new NotImplementedException (); }
  13. [MonoTODO] public void Remove (DataBinding binding) { throw new NotImplementedException (); }
  14. [MonoTODO] public void Remove (string propertyName) { throw new NotImplementedException (); }
  15. [MonoTODO] public void Remove (string propertyName, bool addToRemovedList) { throw new NotImplementedException (); }
  16. [MonoTODO] public int Count { get { throw new NotImplementedException (); } }
  17. [MonoTODO] public bool IsReadOnly { get { throw new NotImplementedException (); } }
  18. [MonoTODO] public bool IsSynchronized { get { throw new NotImplementedException (); } }
  19. [MonoTODO] public DataBinding this [string propertyName] { get { throw new NotImplementedException (); } }
  20. [MonoTODO] public string [] RemovedBindings { get { throw new NotImplementedException (); } }
  21. [MonoTODO] public object SyncRoot { get { throw new NotImplementedException (); } }
  22. }
  23. }