Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebControls / DetailsViewRowCollection.cs / 1 / DetailsViewRowCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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(); } } }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
- DesignerView.cs
- DynamicValidator.cs
- RemoteWebConfigurationHostServer.cs
- SR.Designer.cs
- OdbcEnvironment.cs
- FormParameter.cs
- EntityModelBuildProvider.cs
- RadioButtonStandardAdapter.cs
- BezierSegment.cs
- StringOutput.cs
- SafeWaitHandle.cs
- ButtonFieldBase.cs
- XmlElementElementCollection.cs
- COM2IProvidePropertyBuilderHandler.cs
- XmlSchema.cs
- XmlSchemaNotation.cs
- PaginationProgressEventArgs.cs
- IODescriptionAttribute.cs
- StreamUpgradeInitiator.cs
- ActivityCodeGenerator.cs
- OracleInfoMessageEventArgs.cs
- ActivityDesignerAccessibleObject.cs
- AutomationElement.cs
- UInt64Storage.cs
- BulletedListEventArgs.cs
- ProcessDesigner.cs
- StreamResourceInfo.cs
- TypeExtensionSerializer.cs
- OLEDB_Util.cs
- SqlBuilder.cs
- GPPOINTF.cs
- DataPager.cs
- SimpleTextLine.cs
- EmissiveMaterial.cs
- LinkedResource.cs
- PkcsUtils.cs
- ColorConverter.cs
- NotifyIcon.cs
- ListViewGroupConverter.cs
- InternalControlCollection.cs
- GridViewCancelEditEventArgs.cs
- HttpModuleAction.cs
- StylusEditingBehavior.cs
- EntityUtil.cs
- MultilineStringConverter.cs
- XmlSchemaAnnotated.cs
- HttpException.cs
- FormsAuthenticationConfiguration.cs
- LineServices.cs
- TraceFilter.cs
- TableSectionStyle.cs
- FileAuthorizationModule.cs
- UnauthorizedAccessException.cs
- WindowsStatic.cs
- WebFormsRootDesigner.cs
- JsonFormatGeneratorStatics.cs
- WebPartActionVerb.cs
- DataListItemEventArgs.cs
- InfoCardSymmetricCrypto.cs
- XmlSignificantWhitespace.cs
- GrammarBuilderBase.cs
- WindowsRebar.cs
- StrongNamePublicKeyBlob.cs
- BitmapEffectInput.cs
- ScaleTransform3D.cs
- SecurityTokenTypes.cs
- StandardToolWindows.cs
- XmlBindingWorker.cs
- InfoCardPolicy.cs
- Pen.cs
- BasePattern.cs
- StyleTypedPropertyAttribute.cs
- KnownTypesProvider.cs
- TraceProvider.cs
- MatrixCamera.cs
- DrawingAttributes.cs
- MemberMaps.cs
- ContentAlignmentEditor.cs
- CredentialSelector.cs
- FileLoadException.cs
- GridItemCollection.cs
- SqlWriter.cs
- OleDbConnectionInternal.cs
- TemplateContent.cs
- PolyLineSegment.cs
- X509Chain.cs
- HybridDictionary.cs
- HuffmanTree.cs
- CryptoStream.cs
- AlternateViewCollection.cs
- SEHException.cs
- XamlWriter.cs
- PersonalizationEntry.cs
- HtmlInputCheckBox.cs
- OutputCacheSettings.cs
- SqlUserDefinedAggregateAttribute.cs
- WorkflowValidationFailedException.cs
- TypedTableBase.cs
- Axis.cs
- RenderOptions.cs