Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ValidatorCollection.cs « System.Web.UI « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8b53ec91566e476141942d5d66722a802f8b35a6 (plain)
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
//
// System.Web.UI.ValidatorCollection.cs
//
// Duncan Mak  (duncan@ximian.com)
//
// (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)
		{
		}
	}
}