| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- //
- // System.Web.UI.ValidatorCollection.cs
- //
- // Duncan Mak ([email protected])
- //
- // (C) Ximian, Inc.
- using System;
- using System.Collections;
- namespace System.Web.UI {
- public sealed class ValidatorCollection : ICollection, IEnumerable
- {
- public ValidatorCollection ()
- {
- }
- public int Count {
- get { return 1; }
- }
- public bool IsReadOnly {
- get { return false; }
- }
- public bool IsSynchronized {
- get { return false; }
- }
- public IValidator this [int index] {
- get { return null; }
- }
- public object SyncRoot {
- get { return null; }
- }
- public void Add (IValidator validator)
- {
- }
- public bool Contains (IValidator validator)
- {
- return false;
- }
- public void CopyTo (Array array, int index)
- {
- }
- public IEnumerator GetEnumerator ()
- {
- return null;
- }
- public void Remove (IValidator validator)
- {
- }
- }
- }
|