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
- SqlUnionizer.cs
- CodeMethodInvokeExpression.cs
- SpecialFolderEnumConverter.cs
- Label.cs
- WindowsScrollBar.cs
- RandomNumberGenerator.cs
- TraceSection.cs
- ListItemParagraph.cs
- FixedSOMLineRanges.cs
- ThemeDirectoryCompiler.cs
- Zone.cs
- PropertyGeneratedEventArgs.cs
- X509CertificateChain.cs
- DataServiceRequestArgs.cs
- DataSourceHelper.cs
- SerTrace.cs
- EntityDataSourceSelectingEventArgs.cs
- XamlSerializerUtil.cs
- SelectionService.cs
- AssemblyInfo.cs
- ProfileSection.cs
- RelatedView.cs
- RefreshPropertiesAttribute.cs
- Binding.cs
- HtmlEmptyTagControlBuilder.cs
- AlignmentXValidation.cs
- JoinCqlBlock.cs
- LockCookie.cs
- XmlSchemaValidationException.cs
- TraceListener.cs
- DataGridColumnHeader.cs
- AsyncPostBackTrigger.cs
- CollectionChangeEventArgs.cs
- TimeSpan.cs
- CollectionCodeDomSerializer.cs
- ResourceSetExpression.cs
- XslCompiledTransform.cs
- ApplicationInterop.cs
- PeerValidationBehavior.cs
- WSTrust.cs
- UIntPtr.cs
- CookielessData.cs
- CatalogPartChrome.cs
- BufferedGraphicsManager.cs
- EncryptedPackage.cs
- CurrentTimeZone.cs
- SchemaAttDef.cs
- FileDialog_Vista_Interop.cs
- InvokeBase.cs
- HwndSubclass.cs
- TemplateControl.cs
- OracleBoolean.cs
- PhoneCallDesigner.cs
- TransformerConfigurationWizardBase.cs
- DecimalMinMaxAggregationOperator.cs
- RolePrincipal.cs
- OutOfProcStateClientManager.cs
- HMACSHA384.cs
- AssemblyAttributes.cs
- GridViewHeaderRowPresenterAutomationPeer.cs
- Attributes.cs
- ForeignConstraint.cs
- DataRecordObjectView.cs
- ToolStripDropDown.cs
- RtfNavigator.cs
- TemplateColumn.cs
- HashMembershipCondition.cs
- XmlMembersMapping.cs
- OperatingSystem.cs
- EventManager.cs
- HtmlMobileTextWriter.cs
- XPathNavigatorReader.cs
- FillBehavior.cs
- WebPartManagerInternals.cs
- SqlError.cs
- ConsoleKeyInfo.cs
- Content.cs
- TextLineResult.cs
- CustomAttributeFormatException.cs
- ComplexType.cs
- User.cs
- MediaPlayer.cs
- DataFormat.cs
- RTTypeWrapper.cs
- XmlSchema.cs
- StateMachineWorkflowInstance.cs
- CustomServiceCredentials.cs
- TypeConverter.cs
- XPathArrayIterator.cs
- BulletDecorator.cs
- MarkupCompiler.cs
- CompilationLock.cs
- ApplicationActivator.cs
- HorizontalAlignConverter.cs
- RadioButtonFlatAdapter.cs
- UrlUtility.cs
- TextServicesManager.cs
- WinEventQueueItem.cs
- DCSafeHandle.cs
- COM2ExtendedUITypeEditor.cs