ValidatorCollection.cs 872 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. //
  2. // System.Web.UI.ValidatorCollection.cs
  3. //
  4. // Duncan Mak ([email protected])
  5. //
  6. // (C) Ximian, Inc.
  7. using System;
  8. using System.Collections;
  9. namespace System.Web.UI {
  10. public sealed class ValidatorCollection : ICollection, IEnumerable
  11. {
  12. public ValidatorCollection ()
  13. {
  14. }
  15. public int Count {
  16. get { return 1; }
  17. }
  18. public bool IsReadOnly {
  19. get { return false; }
  20. }
  21. public bool IsSynchronized {
  22. get { return false; }
  23. }
  24. public IValidator this [int index] {
  25. get { return null; }
  26. }
  27. public object SyncRoot {
  28. get { return null; }
  29. }
  30. public void Add (IValidator validator)
  31. {
  32. }
  33. public bool Contains (IValidator validator)
  34. {
  35. return false;
  36. }
  37. public void CopyTo (Array array, int index)
  38. {
  39. }
  40. public IEnumerator GetEnumerator ()
  41. {
  42. return null;
  43. }
  44. public void Remove (IValidator validator)
  45. {
  46. }
  47. }
  48. }