Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebControls / DataKeyCollection.cs / 1 / DataKeyCollection.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)] 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. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ //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)] 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. // Copyright (c) Microsoft Corporation. All rights reserved.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
- ColorMap.cs
- DriveNotFoundException.cs
- WindowsScrollBarBits.cs
- MediaScriptCommandRoutedEventArgs.cs
- GB18030Encoding.cs
- ErrorHandler.cs
- MouseButtonEventArgs.cs
- TableLayoutSettings.cs
- Geometry.cs
- FormatConvertedBitmap.cs
- ApplicationFileParser.cs
- TableStyle.cs
- DetailsViewCommandEventArgs.cs
- ContextMenuStripActionList.cs
- ViewManagerAttribute.cs
- LineSegment.cs
- DrawingAttributesDefaultValueFactory.cs
- CopyAttributesAction.cs
- CompModSwitches.cs
- NonPrimarySelectionGlyph.cs
- ComplexType.cs
- XmlSchemaFacet.cs
- MsmqReceiveHelper.cs
- SqlXml.cs
- NativeCppClassAttribute.cs
- WebHeaderCollection.cs
- OleDbRowUpdatingEvent.cs
- DocComment.cs
- XmlSchemaAnnotated.cs
- MonitorWrapper.cs
- QilStrConcat.cs
- PageCache.cs
- CompatibleComparer.cs
- StrongNameIdentityPermission.cs
- IncrementalCompileAnalyzer.cs
- Light.cs
- COM2ExtendedBrowsingHandler.cs
- EventManager.cs
- ByteConverter.cs
- SQLString.cs
- TextFormatter.cs
- RuleSetCollection.cs
- addressfiltermode.cs
- GestureRecognitionResult.cs
- HtmlTernaryTree.cs
- CounterCreationDataCollection.cs
- _TimerThread.cs
- HashHelper.cs
- IList.cs
- ProfilePropertyNameValidator.cs
- MeshGeometry3D.cs
- SmtpReplyReader.cs
- HttpErrorTraceRecord.cs
- ApplicationServicesHostFactory.cs
- UserControl.cs
- MemberMaps.cs
- PriorityBindingExpression.cs
- LabelDesigner.cs
- QueryReaderSettings.cs
- ScriptMethodAttribute.cs
- PrimaryKeyTypeConverter.cs
- NullRuntimeConfig.cs
- Repeater.cs
- WebBrowserDesigner.cs
- FormsAuthentication.cs
- ParentUndoUnit.cs
- Label.cs
- SystemColorTracker.cs
- SpoolingTaskBase.cs
- BamlBinaryWriter.cs
- FastPropertyAccessor.cs
- Util.cs
- TextCollapsingProperties.cs
- ProgressPage.cs
- DataServiceRequestOfT.cs
- assertwrapper.cs
- ConfigXmlComment.cs
- _Connection.cs
- UncommonField.cs
- CodeSnippetExpression.cs
- ArglessEventHandlerProxy.cs
- MasterPageCodeDomTreeGenerator.cs
- DesignerTransactionCloseEvent.cs
- OverlappedAsyncResult.cs
- DateRangeEvent.cs
- TrustManager.cs
- OlePropertyStructs.cs
- XmlWriterDelegator.cs
- ActiveDocumentEvent.cs
- DataGridViewImageCell.cs
- ProfileManager.cs
- PeerServiceMessageContracts.cs
- XamlFxTrace.cs
- SetterBaseCollection.cs
- GridViewHeaderRowPresenter.cs
- nulltextcontainer.cs
- DataTableNewRowEvent.cs
- SmtpFailedRecipientException.cs
- PersonalizationAdministration.cs
- GenerateScriptTypeAttribute.cs