Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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(); } } } // 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; 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(); } } } // 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
- DataBoundControlDesigner.cs
- _SSPIWrapper.cs
- FreeFormPanel.cs
- ListViewGroup.cs
- DataGridCell.cs
- PagesChangedEventArgs.cs
- Ipv6Element.cs
- RowTypeElement.cs
- AudioSignalProblemOccurredEventArgs.cs
- SqlClientPermission.cs
- ITreeGenerator.cs
- ExtendedProperty.cs
- TextRangeBase.cs
- ImageDrawing.cs
- IsolatedStorageFile.cs
- CommandDesigner.cs
- BaseCAMarshaler.cs
- SqlInternalConnectionSmi.cs
- Itemizer.cs
- ObjRef.cs
- XmlBinaryWriter.cs
- XPathNodeList.cs
- HttpHandlerActionCollection.cs
- XmlSchemaComplexType.cs
- ProviderCollection.cs
- StylusPointPropertyInfoDefaults.cs
- ExpressionReplacer.cs
- DataGridRowDetailsEventArgs.cs
- TouchDevice.cs
- x509store.cs
- TextTreeText.cs
- WorkflowRuntimeBehavior.cs
- VisualBrush.cs
- Utils.cs
- EventArgs.cs
- Stack.cs
- MainMenu.cs
- SpeakProgressEventArgs.cs
- ResourceContainer.cs
- TreeNodeBinding.cs
- SqlException.cs
- ResizeBehavior.cs
- XamlBuildProvider.cs
- WebPartConnectionsConnectVerb.cs
- Matrix.cs
- ThaiBuddhistCalendar.cs
- Matrix.cs
- CredentialCache.cs
- DbReferenceCollection.cs
- TemplateControlParser.cs
- InboundActivityHelper.cs
- ChildTable.cs
- wgx_exports.cs
- ImmutableObjectAttribute.cs
- XmlAnyElementAttributes.cs
- BitSet.cs
- Assert.cs
- OleDbConnectionPoolGroupProviderInfo.cs
- SspiHelper.cs
- FactoryRecord.cs
- TranslateTransform3D.cs
- DependencySource.cs
- DataChangedEventManager.cs
- NotCondition.cs
- CommonDialog.cs
- ConfigurationCollectionAttribute.cs
- FontStretch.cs
- HMACSHA256.cs
- TabControlAutomationPeer.cs
- IListConverters.cs
- FileDialog.cs
- InstanceKeyNotReadyException.cs
- TemplateManager.cs
- NamespaceList.cs
- TextFormatterHost.cs
- LogExtent.cs
- _SSPISessionCache.cs
- TraceHandler.cs
- TreeBuilder.cs
- ZipIOCentralDirectoryBlock.cs
- StringStorage.cs
- OrderPreservingPipeliningMergeHelper.cs
- WindowsRegion.cs
- RenderContext.cs
- DoubleUtil.cs
- DayRenderEvent.cs
- EntitySetBaseCollection.cs
- PrintPreviewDialog.cs
- CmsUtils.cs
- RuleCache.cs
- SmiTypedGetterSetter.cs
- MsmqIntegrationChannelListener.cs
- ClientApiGenerator.cs
- DebuggerAttributes.cs
- UserControl.cs
- UIElementPropertyUndoUnit.cs
- DataSourceView.cs
- OutputChannel.cs
- MailMessageEventArgs.cs
- LayoutTableCell.cs