Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / DetailsViewRowCollection.cs / 1305376 / DetailsViewRowCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; ////// public class DetailsViewRowCollection : ICollection { private ArrayList _rows; ///Represents the collection of ///objects. /// public DetailsViewRowCollection(ArrayList rows) { this._rows = rows; } ///Initializes a new instance of the ///class. /// public int Count { get { return _rows.Count; } } ///Gets the number of rows in the collection. This property is read-only. ////// public bool IsReadOnly { get { return false; } } ///Gets a value that specifies whether rows in the ///can be /// modified. This property is read-only. /// public bool IsSynchronized { get { return false; } } ///Gets a value that indicates whether the ///is /// thread-safe. This property is read-only. /// public object SyncRoot { get { return this; } } ///Gets the object used to synchronize access to the collection. This property is read-only. ////// public DetailsViewRow this[int index] { get { return(DetailsViewRow)_rows[index]; } } ///Gets a ///at the specified index in the /// collection. /// public void CopyTo(DetailsViewRow[] array, int index) { ((ICollection)this).CopyTo(array, index); } ///Copies the contents of the entire collection into an ///appending /// at the specified index of the . void ICollection.CopyTo(Array array, int index) { for (IEnumerator e = this.GetEnumerator(); e.MoveNext();) array.SetValue(e.Current, index++); } /// /// public IEnumerator GetEnumerator() { return _rows.GetEnumerator(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //Creates an enumerator for the ///used to /// iterate through the collection. // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; ////// public class DetailsViewRowCollection : ICollection { private ArrayList _rows; ///Represents the collection of ///objects. /// public DetailsViewRowCollection(ArrayList rows) { this._rows = rows; } ///Initializes a new instance of the ///class. /// public int Count { get { return _rows.Count; } } ///Gets the number of rows in the collection. This property is read-only. ////// public bool IsReadOnly { get { return false; } } ///Gets a value that specifies whether rows in the ///can be /// modified. This property is read-only. /// public bool IsSynchronized { get { return false; } } ///Gets a value that indicates whether the ///is /// thread-safe. This property is read-only. /// public object SyncRoot { get { return this; } } ///Gets the object used to synchronize access to the collection. This property is read-only. ////// public DetailsViewRow this[int index] { get { return(DetailsViewRow)_rows[index]; } } ///Gets a ///at the specified index in the /// collection. /// public void CopyTo(DetailsViewRow[] array, int index) { ((ICollection)this).CopyTo(array, index); } ///Copies the contents of the entire collection into an ///appending /// at the specified index of the . void ICollection.CopyTo(Array array, int index) { for (IEnumerator e = this.GetEnumerator(); e.MoveNext();) array.SetValue(e.Current, index++); } /// /// public IEnumerator GetEnumerator() { return _rows.GetEnumerator(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Creates an enumerator for the ///used to /// iterate through the collection.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ColorContext.cs
- TaskCanceledException.cs
- Image.cs
- SecurityDescriptor.cs
- DocumentReferenceCollection.cs
- Query.cs
- ACL.cs
- AppDomainAttributes.cs
- SpinWait.cs
- WindowsSpinner.cs
- MaskInputRejectedEventArgs.cs
- AndCondition.cs
- SafeNativeMethods.cs
- SystemTcpStatistics.cs
- Configuration.cs
- EntityClientCacheEntry.cs
- InstanceDataCollectionCollection.cs
- StatusBarItemAutomationPeer.cs
- XmlSchemaDocumentation.cs
- MSAAWinEventWrap.cs
- XsltSettings.cs
- SoapSchemaExporter.cs
- ColumnHeader.cs
- AuthenticationModulesSection.cs
- FacetDescription.cs
- ValidationSummary.cs
- RegisteredHiddenField.cs
- BulletDecorator.cs
- PropertyFilterAttribute.cs
- CorrelationManager.cs
- EnumBuilder.cs
- ProvidePropertyAttribute.cs
- TextRange.cs
- CustomValidator.cs
- EntityConnectionStringBuilder.cs
- BulletChrome.cs
- Metadata.cs
- MemberAssignmentAnalysis.cs
- _SpnDictionary.cs
- _HeaderInfoTable.cs
- PageBorderless.cs
- ColumnWidthChangedEvent.cs
- PerformanceCounterManager.cs
- SelectionHighlightInfo.cs
- Config.cs
- DateTimePicker.cs
- FacetChecker.cs
- WpfSharedXamlSchemaContext.cs
- XamlPathDataSerializer.cs
- SqlBooleanMismatchVisitor.cs
- Image.cs
- ActivityExecutorDelegateInfo.cs
- TableAutomationPeer.cs
- MultiPropertyDescriptorGridEntry.cs
- ReflectEventDescriptor.cs
- ImageListStreamer.cs
- ComponentEditorForm.cs
- ClusterSafeNativeMethods.cs
- ConditionalAttribute.cs
- __ComObject.cs
- AdornedElementPlaceholder.cs
- TextTrailingWordEllipsis.cs
- TextTreeText.cs
- GeometryHitTestParameters.cs
- RangeValidator.cs
- VarInfo.cs
- SpellCheck.cs
- XPathScanner.cs
- HtmlTextArea.cs
- RuleProcessor.cs
- DataBoundControl.cs
- BrowserDefinitionCollection.cs
- GridPattern.cs
- FlowDocumentPage.cs
- ScrollBar.cs
- NumericExpr.cs
- NativeMethods.cs
- WebBaseEventKeyComparer.cs
- RootBrowserWindow.cs
- AsynchronousChannelMergeEnumerator.cs
- Cast.cs
- ScrollEvent.cs
- Lease.cs
- BitmapPalettes.cs
- Durable.cs
- SmiEventSink.cs
- SiteMapDataSourceDesigner.cs
- OverrideMode.cs
- Scanner.cs
- LiteralLink.cs
- WindowsFormsSynchronizationContext.cs
- OTFRasterizer.cs
- COM2Enum.cs
- EventLogQuery.cs
- HtmlWindowCollection.cs
- MexHttpBindingCollectionElement.cs
- WebPartTracker.cs
- PersonalizationEntry.cs
- wgx_commands.cs
- ClockGroup.cs