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
- TraceHandlerErrorFormatter.cs
- RegexRunnerFactory.cs
- DiagnosticEventProvider.cs
- Inflater.cs
- PointLight.cs
- TemplateControlBuildProvider.cs
- TableDetailsCollection.cs
- ObjectConverter.cs
- DataGridViewTextBoxEditingControl.cs
- KeyManager.cs
- RijndaelManagedTransform.cs
- OdbcStatementHandle.cs
- HttpRequestBase.cs
- StoreConnection.cs
- ContainsSearchOperator.cs
- SignatureToken.cs
- UseAttributeSetsAction.cs
- StoryFragments.cs
- EdmComplexTypeAttribute.cs
- ObjectDataProvider.cs
- ActivationService.cs
- InvalidDataException.cs
- AvTraceFormat.cs
- ExtractedStateEntry.cs
- FormViewPageEventArgs.cs
- Guid.cs
- SystemWebCachingSectionGroup.cs
- TypeConverterValueSerializer.cs
- MbpInfo.cs
- SqlTriggerContext.cs
- GrammarBuilderDictation.cs
- XmlEncoding.cs
- DesignerImageAdapter.cs
- WinEventTracker.cs
- Compilation.cs
- DataGridBoundColumn.cs
- DataSourceCacheDurationConverter.cs
- HttpModuleActionCollection.cs
- ExtensionsSection.cs
- _CookieModule.cs
- COMException.cs
- DefaultExpression.cs
- DynamicFilterExpression.cs
- NodeFunctions.cs
- Command.cs
- DesignBinding.cs
- MethodToken.cs
- SemanticValue.cs
- TrackBar.cs
- GiveFeedbackEvent.cs
- ResourceManager.cs
- ResXResourceSet.cs
- FrameworkTemplate.cs
- XPathNodeList.cs
- DataGridTextBox.cs
- WorkflowInstanceSuspendedRecord.cs
- ColumnReorderedEventArgs.cs
- ConfigurationStrings.cs
- _SslSessionsCache.cs
- XmlIterators.cs
- EpmCustomContentDeSerializer.cs
- documentation.cs
- DBConnection.cs
- FigureParagraph.cs
- UnsafeNativeMethods.cs
- PerformanceCountersElement.cs
- SettingsAttributeDictionary.cs
- ReceiveContent.cs
- DataSourceControlBuilder.cs
- KnownBoxes.cs
- SchemaInfo.cs
- UIPermission.cs
- SingleAnimationBase.cs
- SmtpTransport.cs
- MaskDesignerDialog.cs
- PositiveTimeSpanValidatorAttribute.cs
- precedingquery.cs
- SymbolDocumentInfo.cs
- HtmlTableRow.cs
- TextDpi.cs
- ClientSettingsSection.cs
- AmbientLight.cs
- GridViewCancelEditEventArgs.cs
- SqlTrackingService.cs
- RoleService.cs
- QfeChecker.cs
- DebugView.cs
- SiteMapNodeItem.cs
- NativeDirectoryServicesQueryAPIs.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- SharedUtils.cs
- RootDesignerSerializerAttribute.cs
- Visual3D.cs
- SqlEnums.cs
- PropertyGridCommands.cs
- NumericUpDownAccelerationCollection.cs
- GridViewHeaderRowPresenter.cs
- DataGridToolTip.cs
- Thumb.cs
- DetailsViewDeleteEventArgs.cs