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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
//------------------------------------------------------------------------------
// <copyright file="ValidatorCollection.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
/*
*/
namespace System.Web.UI {
using System.Runtime.InteropServices;
using System.Collections;
/// <devdoc>
/// <para> Exposes a
/// read-only array of <see cref='System.Web.UI.IValidator'/>
/// references.</para>
/// </devdoc>
public sealed class ValidatorCollection : ICollection {
private ArrayList data;
/// <devdoc>
/// <para>Initializes a new instance of the <see cref='System.Web.UI.ValidatorCollection'/> class.</para>
/// </devdoc>
public ValidatorCollection() {
data = new ArrayList();
}
/// <devdoc>
/// <para>Indicates the number of references in the collection.
/// This property is read-only.</para>
/// </devdoc>
public int Count {
get {
return data.Count;
}
}
/// <devdoc>
/// <para>Indicates the validator at the specified index. This
/// property is read-only.</para>
/// </devdoc>
public IValidator this[int index] {
get {
return(IValidator) data[index];
}
}
/// <devdoc>
/// <para>Adds the specified validator to the collection.</para>
/// </devdoc>
public void Add(IValidator validator) {
data.Add(validator);
}
/// <devdoc>
/// <para>Returns whether the specified validator exists in the collection.</para>
/// </devdoc>
public bool Contains(IValidator validator) {
return data.Contains(validator);
}
/// <devdoc>
/// <para>Removes the specified validator from the collection.</para>
/// </devdoc>
public void Remove(IValidator validator) {
data.Remove(validator);
}
/// <devdoc>
/// <para>Gets an enumerator that iterates over the collection.</para>
/// </devdoc>
public IEnumerator GetEnumerator() {
return data.GetEnumerator();
}
/// <devdoc>
/// <para>Copies a validator to the specified collection and location.</para>
/// </devdoc>
public void CopyTo(Array array, int index) {
for (IEnumerator e = this.GetEnumerator(); e.MoveNext();)
array.SetValue(e.Current, index++);
}
/// <devdoc>
/// <para>Indicates an object that can be used to synchronize the
/// <see cref='System.Web.UI.ValidatorCollection'/> .
/// This property is read-only.</para>
/// </devdoc>
public Object SyncRoot {
get { return this;}
}
/// <devdoc>
/// <para>Indicates whether the <see cref='System.Web.UI.ValidatorCollection'/> is read-only. This property is
/// read-only.</para>
/// </devdoc>
public bool IsReadOnly {
get { return false;}
}
/// <devdoc>
/// <para>Indicates whether the <see cref='System.Web.UI.ValidatorCollection'/> is synchronized
/// (thread-safe). This property is read-only.</para>
/// </devdoc>
public bool IsSynchronized {
get { return false;}
}
}
}
|