Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / ValidatorCollection.cs / 1305376 / ValidatorCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Web.UI { using System.Runtime.InteropServices; using System.Collections; ////// public sealed class ValidatorCollection : ICollection { private ArrayList data; ///Exposes a /// read-only array of ////// references. /// public ValidatorCollection() { data = new ArrayList(); } ///Initializes a new instance of the ///class. /// public int Count { get { return data.Count; } } ///Indicates the number of references in the collection. /// This property is read-only. ////// public IValidator this[int index] { get { return(IValidator) data[index]; } } ///Indicates the validator at the specified index. This /// property is read-only. ////// public void Add(IValidator validator) { data.Add(validator); } ///Adds the specified validator to the collection. ////// public bool Contains(IValidator validator) { return data.Contains(validator); } ///Returns whether the specified validator exists in the collection. ////// public void Remove(IValidator validator) { data.Remove(validator); } ///Removes the specified validator from the collection. ////// public IEnumerator GetEnumerator() { return data.GetEnumerator(); } ///Gets an enumerator that iterates over the collection. ////// public void CopyTo(Array array, int index) { for (IEnumerator e = this.GetEnumerator(); e.MoveNext();) array.SetValue(e.Current, index++); } ///Copies a validator to the specified collection and location. ////// public Object SyncRoot { get { return this;} } ///Indicates an object that can be used to synchronize the /// ///. /// This property is read-only. /// public bool IsReadOnly { get { return false;} } ///Indicates whether the ///is read-only. This property is /// read-only. /// public bool IsSynchronized { get { return false;} } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Indicates whether the ///is synchronized /// (thread-safe). This property is read-only.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WebHeaderCollection.cs
- ActiveXHost.cs
- ProjectionCamera.cs
- AssemblyBuilderData.cs
- ListViewItem.cs
- MultiBindingExpression.cs
- _IPv4Address.cs
- WeakEventTable.cs
- ScriptMethodAttribute.cs
- AsymmetricKeyExchangeDeformatter.cs
- UInt16Storage.cs
- BoundField.cs
- TextParaClient.cs
- ServerType.cs
- GlobalizationAssembly.cs
- HtmlUtf8RawTextWriter.cs
- PixelFormats.cs
- EntityKeyElement.cs
- SafeBitVector32.cs
- HostedBindingBehavior.cs
- FormViewRow.cs
- ContractBase.cs
- DocobjHost.cs
- TextBox.cs
- TextPointerBase.cs
- BitVector32.cs
- DataGridViewDataErrorEventArgs.cs
- TransformGroup.cs
- CodeDirectoryCompiler.cs
- VBCodeProvider.cs
- ExclusiveNamedPipeTransportManager.cs
- PropertyMappingExceptionEventArgs.cs
- EventArgs.cs
- ThemeableAttribute.cs
- FrameworkObject.cs
- Predicate.cs
- GlobalEventManager.cs
- UnmanagedMarshal.cs
- SqlExpressionNullability.cs
- WindowsPrincipal.cs
- ServiceControllerDesigner.cs
- ActiveXHelper.cs
- ArgumentNullException.cs
- wmiprovider.cs
- MenuItemCollectionEditor.cs
- X500Name.cs
- VolatileEnlistmentMultiplexing.cs
- HttpRequestCacheValidator.cs
- CryptographicAttribute.cs
- LedgerEntry.cs
- FixedTextView.cs
- SpnegoTokenAuthenticator.cs
- AdRotator.cs
- QueryableFilterRepeater.cs
- RegexRunner.cs
- WasEndpointConfigContainer.cs
- mansign.cs
- ObjectStateFormatter.cs
- SoapAttributes.cs
- InvalidDocumentContentsException.cs
- PartialToken.cs
- AsyncResult.cs
- ElementMarkupObject.cs
- FixedDocument.cs
- StyleTypedPropertyAttribute.cs
- TypeDependencyAttribute.cs
- TextRenderer.cs
- TextRangeSerialization.cs
- EventSourceCreationData.cs
- ObjectListShowCommandsEventArgs.cs
- LambdaCompiler.Binary.cs
- MediaEntryAttribute.cs
- SqlWebEventProvider.cs
- Crypto.cs
- ActivityInterfaces.cs
- EntityTypeEmitter.cs
- FunctionQuery.cs
- metadatamappinghashervisitor.cs
- Converter.cs
- ActivityContext.cs
- FixUp.cs
- SqlStatistics.cs
- ObjectListCommandEventArgs.cs
- CopyCodeAction.cs
- HMACSHA384.cs
- ApplicationFileCodeDomTreeGenerator.cs
- UrlMapping.cs
- WindowsFont.cs
- CodeMemberField.cs
- EndEvent.cs
- ProjectionPruner.cs
- ItemCheckedEvent.cs
- RectAnimationBase.cs
- Point.cs
- Pkcs7Signer.cs
- Attribute.cs
- SqlComparer.cs
- SafeWaitHandle.cs
- QuaternionKeyFrameCollection.cs
- TokenBasedSetEnumerator.cs