Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / DataKeyCollection.cs / 1305376 / DataKeyCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; ////// public sealed class DataKeyCollection : ICollection { private ArrayList keys; ////// public DataKeyCollection(ArrayList keys) { this.keys = keys; } ///Initializes a new instance of the ///class. /// public int Count { get { return keys.Count; } } ///Gets the number of objects in the collection. This property is read-only. ////// public bool IsReadOnly { get { return false; } } ///Gets the value that specifies whether items 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 object this[int index] { get { return keys[index]; } } ///Gets a ///at the specified index in the collection. This property is read-only. /// public void CopyTo(Array array, int index) { for (IEnumerator e = this.GetEnumerator(); e.MoveNext();) array.SetValue(e.Current, index++); } ///Copies the contents of the entire collection into an ///appending at /// the specified index of the . /// public IEnumerator GetEnumerator() { return keys.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
- Exceptions.cs
- SqlUserDefinedAggregateAttribute.cs
- TryExpression.cs
- TextEditorCopyPaste.cs
- ExtensionSurface.cs
- TransactionException.cs
- PeerPresenceInfo.cs
- CurrentChangingEventManager.cs
- CompositeKey.cs
- TreeNodeConverter.cs
- ArrayExtension.cs
- NavigationFailedEventArgs.cs
- XmlHierarchicalEnumerable.cs
- Focus.cs
- HashHelper.cs
- SQLBoolean.cs
- SQLBinaryStorage.cs
- PageRanges.cs
- UIElement3DAutomationPeer.cs
- InternalControlCollection.cs
- WorkflowApplicationAbortedEventArgs.cs
- loginstatus.cs
- PenContexts.cs
- BulletedList.cs
- ObjectDataSourceMethodEventArgs.cs
- ProcessRequestArgs.cs
- TimeManager.cs
- SimpleWorkerRequest.cs
- DataSetMappper.cs
- CodeTypeReferenceExpression.cs
- WebPartPersonalization.cs
- BindingList.cs
- XmlSchemaExporter.cs
- DataGridBoolColumn.cs
- CompositeActivityCodeGenerator.cs
- PrintEvent.cs
- TranslateTransform3D.cs
- SystemInformation.cs
- EntitySetBase.cs
- ConfigurationValidatorAttribute.cs
- BitmapDownload.cs
- WebPartExportVerb.cs
- DataSourceHelper.cs
- SiteMapProvider.cs
- FileReservationCollection.cs
- SamlAssertionKeyIdentifierClause.cs
- RawUIStateInputReport.cs
- NavigateUrlConverter.cs
- XmlSchemaExternal.cs
- InvokeBinder.cs
- RemotingClientProxy.cs
- SqlConnectionStringBuilder.cs
- MarkupProperty.cs
- RawUIStateInputReport.cs
- ReaderContextStackData.cs
- NamespaceInfo.cs
- CanonicalXml.cs
- FillErrorEventArgs.cs
- SystemWebCachingSectionGroup.cs
- MessagingDescriptionAttribute.cs
- Internal.cs
- UnaryNode.cs
- AuthenticationService.cs
- EndOfStreamException.cs
- MultiTargetingUtil.cs
- FileBasedResourceGroveler.cs
- SystemFonts.cs
- DockPanel.cs
- ContextMarshalException.cs
- CellTreeSimplifier.cs
- VectorCollection.cs
- XMLSchema.cs
- EtwTrace.cs
- WebServiceTypeData.cs
- _NestedSingleAsyncResult.cs
- SqlCommandSet.cs
- XmlEncodedRawTextWriter.cs
- Matrix3D.cs
- PageThemeBuildProvider.cs
- ActivityCodeDomSerializer.cs
- PrintDocument.cs
- _SslState.cs
- MD5CryptoServiceProvider.cs
- NameObjectCollectionBase.cs
- ItemCollection.cs
- FreezableOperations.cs
- ParenExpr.cs
- CqlIdentifiers.cs
- NetDataContractSerializer.cs
- TabletDeviceInfo.cs
- ImageAttributes.cs
- CFStream.cs
- PolicyStatement.cs
- TCEAdapterGenerator.cs
- DiagnosticsConfigurationHandler.cs
- validationstate.cs
- CallContext.cs
- Currency.cs
- InternalCache.cs
- CodeCommentStatementCollection.cs