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
- NameTable.cs
- ParseNumbers.cs
- OleAutBinder.cs
- DrawingDrawingContext.cs
- PrePostDescendentsWalker.cs
- ServiceSettingsResponseInfo.cs
- UserInitiatedRoutedEventPermission.cs
- SQlBooleanStorage.cs
- IsolationInterop.cs
- Transform3DCollection.cs
- Roles.cs
- AspCompat.cs
- Block.cs
- XmlEncoding.cs
- LinearGradientBrush.cs
- ToolStripPanelRenderEventArgs.cs
- WebPartZoneCollection.cs
- StoreItemCollection.Loader.cs
- CreateParams.cs
- CodeObjectCreateExpression.cs
- AppDomainAttributes.cs
- IResourceProvider.cs
- GlyphShapingProperties.cs
- NodeFunctions.cs
- ShaderEffect.cs
- ManipulationInertiaStartingEventArgs.cs
- BuildProvider.cs
- TemplatedMailWebEventProvider.cs
- GroupBox.cs
- URLIdentityPermission.cs
- CultureInfo.cs
- Margins.cs
- PeerApplication.cs
- RawUIStateInputReport.cs
- GridViewCancelEditEventArgs.cs
- BooleanConverter.cs
- ByteStreamGeometryContext.cs
- FreezableCollection.cs
- MouseActionValueSerializer.cs
- HostedElements.cs
- BinHexDecoder.cs
- Vector3D.cs
- CommentAction.cs
- ProfessionalColors.cs
- FloaterParagraph.cs
- GetCertificateRequest.cs
- cryptoapiTransform.cs
- SchemaObjectWriter.cs
- TemplateGroupCollection.cs
- HideDisabledControlAdapter.cs
- Number.cs
- NamespaceInfo.cs
- TextFormatterContext.cs
- RuntimeHelpers.cs
- ScriptingProfileServiceSection.cs
- LineUtil.cs
- ObjectAnimationUsingKeyFrames.cs
- BindingManagerDataErrorEventArgs.cs
- XPathBinder.cs
- AlphabetConverter.cs
- OdbcFactory.cs
- ProfileProvider.cs
- WindowManager.cs
- SafeEventHandle.cs
- BufferBuilder.cs
- Header.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- QuadraticBezierSegment.cs
- Rijndael.cs
- SQLStringStorage.cs
- HiddenField.cs
- MachineKeyConverter.cs
- WebPartManager.cs
- ThreadInterruptedException.cs
- ConstraintConverter.cs
- CodeMemberProperty.cs
- SystemNetworkInterface.cs
- PrintController.cs
- NetStream.cs
- StrokeCollection.cs
- StopStoryboard.cs
- Rect.cs
- printdlgexmarshaler.cs
- OnOperation.cs
- InputScopeAttribute.cs
- BinaryObjectInfo.cs
- WebResourceAttribute.cs
- SearchExpression.cs
- BufferedMessageWriter.cs
- MutableAssemblyCacheEntry.cs
- AspNetRouteServiceHttpHandler.cs
- TabletDeviceInfo.cs
- FocusChangedEventArgs.cs
- IsolatedStoragePermission.cs
- DataSourceXmlTextReader.cs
- RichTextBox.cs
- ComponentEvent.cs
- ToolStripDesignerUtils.cs
- DataControlFieldCollection.cs
- SchemaNotation.cs