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
- ProxyWebPartManager.cs
- HtmlElement.cs
- SerializationInfo.cs
- ReadContentAsBinaryHelper.cs
- Point3DAnimation.cs
- HtmlTable.cs
- AccessDataSource.cs
- XmlQueryRuntime.cs
- RegisteredExpandoAttribute.cs
- ExpandedWrapper.cs
- RelationshipEndCollection.cs
- DeviceContext2.cs
- PointHitTestResult.cs
- IgnoreSection.cs
- StringUtil.cs
- C14NUtil.cs
- Currency.cs
- SerializerProvider.cs
- DefaultValueTypeConverter.cs
- DependencyPropertyKey.cs
- DetailsViewRowCollection.cs
- PageParserFilter.cs
- FormattedText.cs
- GlobalizationAssembly.cs
- NamedPermissionSet.cs
- WebRequestModulesSection.cs
- TextPenaltyModule.cs
- DataGridViewRowDividerDoubleClickEventArgs.cs
- AccessViolationException.cs
- BitmapScalingModeValidation.cs
- TypeSystem.cs
- ServiceHttpModule.cs
- UniqueEventHelper.cs
- Serializer.cs
- WizardPanelChangingEventArgs.cs
- AlphaSortedEnumConverter.cs
- GeometryHitTestParameters.cs
- AcceptorSessionSymmetricTransportSecurityProtocol.cs
- AlternationConverter.cs
- LineInfo.cs
- SymbolEqualComparer.cs
- Drawing.cs
- ConfigurationSection.cs
- ComponentChangedEvent.cs
- SqlProvider.cs
- TextRangeProviderWrapper.cs
- ItemChangedEventArgs.cs
- WindowShowOrOpenTracker.cs
- ApplicationFileParser.cs
- HttpListenerContext.cs
- COM2ColorConverter.cs
- RegexMatchCollection.cs
- OperationAbortedException.cs
- ComponentChangedEvent.cs
- StrokeNodeOperations2.cs
- TypeTypeConverter.cs
- SiteMapNodeCollection.cs
- GridViewCellAutomationPeer.cs
- RegexTree.cs
- AsymmetricSignatureFormatter.cs
- X509Chain.cs
- SchemaNames.cs
- PropertyChangingEventArgs.cs
- SqlConnectionHelper.cs
- ProfessionalColorTable.cs
- LongAverageAggregationOperator.cs
- ResizingMessageFilter.cs
- CheckedListBox.cs
- BitmapEffectInput.cs
- AsymmetricSignatureFormatter.cs
- MeasurementDCInfo.cs
- SupportingTokenSpecification.cs
- GraphicsContext.cs
- ToolStripGrip.cs
- DataContractFormatAttribute.cs
- DataGridViewSelectedCellsAccessibleObject.cs
- OptimisticConcurrencyException.cs
- TypeDescriptionProvider.cs
- WebScriptServiceHostFactory.cs
- SqlDataSourceCommandParser.cs
- MediaEntryAttribute.cs
- Converter.cs
- SpellCheck.cs
- CodeCastExpression.cs
- ListViewGroupConverter.cs
- oledbmetadatacollectionnames.cs
- storepermission.cs
- EventLogSession.cs
- RtfFormatStack.cs
- CompareValidator.cs
- SqlConnectionManager.cs
- ClientScriptManager.cs
- MultitargetingHelpers.cs
- nulltextcontainer.cs
- TdsParserHelperClasses.cs
- SortedList.cs
- SqlConnectionPoolGroupProviderInfo.cs
- CommonDialog.cs
- SortedDictionary.cs
- CharacterBuffer.cs