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
- DataGridViewIntLinkedList.cs
- TreeViewHitTestInfo.cs
- BinaryNegotiation.cs
- BaseCodeDomTreeGenerator.cs
- Registry.cs
- Rect3DValueSerializer.cs
- CacheAxisQuery.cs
- RadioButton.cs
- WebPartConnectionsCancelEventArgs.cs
- _AutoWebProxyScriptEngine.cs
- DataGridViewLinkCell.cs
- ResourceFallbackManager.cs
- RoutedEventValueSerializer.cs
- Error.cs
- DataGridViewTextBoxEditingControl.cs
- Select.cs
- Tracking.cs
- BitmapMetadataEnumerator.cs
- ProviderSettings.cs
- BuildProvider.cs
- TemplateContent.cs
- ObjectRef.cs
- SqlTriggerContext.cs
- XmlChoiceIdentifierAttribute.cs
- FromRequest.cs
- mediaeventshelper.cs
- Thread.cs
- PanelStyle.cs
- DesignerOptionService.cs
- Token.cs
- ControlBuilder.cs
- SynchronizedDispatch.cs
- versioninfo.cs
- HeaderCollection.cs
- DropShadowBitmapEffect.cs
- NumberSubstitution.cs
- PrinterSettings.cs
- InfoCardRSAPKCS1SignatureDeformatter.cs
- ClientSession.cs
- Margins.cs
- ParentUndoUnit.cs
- DynamicPropertyReader.cs
- ApplicationServiceHelper.cs
- DoubleAnimationClockResource.cs
- EditorPartChrome.cs
- XmlSiteMapProvider.cs
- ToolBar.cs
- log.cs
- ResolvePPIDRequest.cs
- SettingsPropertyWrongTypeException.cs
- BindingFormattingDialog.cs
- AttachedPropertyDescriptor.cs
- LoginUtil.cs
- NameValueCollection.cs
- TCPClient.cs
- UIElement.cs
- ScaleTransform.cs
- CorrelationResolver.cs
- FreeFormDesigner.cs
- PhysicalAddress.cs
- DataSvcMapFileSerializer.cs
- ImageList.cs
- SafeLibraryHandle.cs
- ListViewDeleteEventArgs.cs
- KeyboardNavigation.cs
- WebSysDefaultValueAttribute.cs
- ConditionalWeakTable.cs
- FileChangesMonitor.cs
- EraserBehavior.cs
- SoapTypeAttribute.cs
- UnsignedPublishLicense.cs
- nulltextnavigator.cs
- PeerApplicationLaunchInfo.cs
- SelfIssuedAuthRSAPKCS1SignatureDeformatter.cs
- ProcessManager.cs
- CanExecuteRoutedEventArgs.cs
- TextProperties.cs
- MimeImporter.cs
- MailDefinition.cs
- MessageBuilder.cs
- IndexedGlyphRun.cs
- EditCommandColumn.cs
- HttpResponseHeader.cs
- SafeBitVector32.cs
- Timer.cs
- PowerModeChangedEventArgs.cs
- SafeRegistryKey.cs
- Terminate.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- AncestorChangedEventArgs.cs
- Pkcs7Recipient.cs
- SimpleTextLine.cs
- XPathEmptyIterator.cs
- NullReferenceException.cs
- ClickablePoint.cs
- ToReply.cs
- ToolStripDropDownItem.cs
- CatalogZone.cs
- XmlSchemaObjectTable.cs
- HelpKeywordAttribute.cs