Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / DataKeyArray.cs / 1305376 / DataKeyArray.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; ////// public sealed class DataKeyArray : ICollection, IStateManager { private ArrayList _keys; private bool _isTracking; ////// public DataKeyArray(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 DataKey this[int index] { get { return _keys[index] as DataKey; } } ///Gets a ///at the specified index in the collection. This property is read-only. /// public void CopyTo(DataKey[] 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 _keys.GetEnumerator(); } #region IStateManager implementation ///Creates an enumerator for the ///used to iterate /// through the collection. bool IStateManager.IsTrackingViewState { get { return _isTracking; } } /// void IStateManager.LoadViewState(object state) { if (state != null) { object[] keysState = (object[])state; for (int i = 0; i < keysState.Length; i++) { if (keysState[i] != null) { ((IStateManager)_keys[i]).LoadViewState(keysState[i]); } } } } /// object IStateManager.SaveViewState() { int keyCount = _keys.Count; object[] keysState = new object[keyCount]; bool savedState = false; for (int i = 0; i < keyCount; i++) { keysState[i] = ((IStateManager)_keys[i]).SaveViewState(); if (keysState[i] != null) savedState = true; } return savedState ? keysState : null; } /// void IStateManager.TrackViewState() { _isTracking = true; int keyCount = _keys.Count; for (int i = 0; i < keyCount; i++) { ((IStateManager)_keys[i]).TrackViewState(); } } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- UriTemplateMatch.cs
- XmlSerializerAssemblyAttribute.cs
- TransformDescriptor.cs
- XmlSortKey.cs
- Exceptions.cs
- RightsManagementInformation.cs
- DataTablePropertyDescriptor.cs
- ExtendedProtectionPolicyTypeConverter.cs
- ChangeConflicts.cs
- VectorAnimationUsingKeyFrames.cs
- EventSourceCreationData.cs
- XmlComment.cs
- TransformerInfoCollection.cs
- TableLayoutSettings.cs
- RoleServiceManager.cs
- MenuTracker.cs
- shaper.cs
- ISAPIWorkerRequest.cs
- DateTimeFormatInfoScanner.cs
- RouteCollection.cs
- AspNetSynchronizationContext.cs
- CheckableControlBaseAdapter.cs
- BinHexDecoder.cs
- ConfigDefinitionUpdates.cs
- IdentityManager.cs
- XmlToDatasetMap.cs
- TdsParserSafeHandles.cs
- StorageComplexTypeMapping.cs
- ConfigXmlSignificantWhitespace.cs
- PowerStatus.cs
- CachedFontFamily.cs
- Utils.cs
- CompositeTypefaceMetrics.cs
- ParameterReplacerVisitor.cs
- PropertyDescriptorComparer.cs
- BlurBitmapEffect.cs
- TraceXPathNavigator.cs
- MissingMemberException.cs
- AssemblyBuilder.cs
- TreeNodeCollection.cs
- AttachmentCollection.cs
- WebPartDisplayModeCancelEventArgs.cs
- DetailsViewDeleteEventArgs.cs
- HotSpot.cs
- AttributeAction.cs
- MobileResource.cs
- InputLanguageCollection.cs
- ZoneIdentityPermission.cs
- CodeMemberProperty.cs
- FileInfo.cs
- ElementMarkupObject.cs
- DynamicDiscoveryDocument.cs
- TextCompositionManager.cs
- KernelTypeValidation.cs
- Calendar.cs
- Events.cs
- UserNameSecurityToken.cs
- RenderData.cs
- StructuredProperty.cs
- ProxyHelper.cs
- GridViewRowCollection.cs
- MonthCalendar.cs
- FileFormatException.cs
- TextViewBase.cs
- UInt32Converter.cs
- TextEffect.cs
- DataGridSortCommandEventArgs.cs
- FtpCachePolicyElement.cs
- RuleInfoComparer.cs
- TransportContext.cs
- DesignerAttribute.cs
- CommandEventArgs.cs
- HelpProvider.cs
- WSSecureConversationDec2005.cs
- Visual3DCollection.cs
- ApplyImportsAction.cs
- IxmlLineInfo.cs
- StringFunctions.cs
- XmlReturnReader.cs
- QueryStringParameter.cs
- VirtualDirectoryMappingCollection.cs
- ImageButton.cs
- ExpressionDumper.cs
- FrameworkContentElement.cs
- EntityKey.cs
- StylusButtonEventArgs.cs
- NameValueSectionHandler.cs
- Image.cs
- EntityDesignPluralizationHandler.cs
- NumericUpDownAccelerationCollection.cs
- StylusTouchDevice.cs
- ServerIdentity.cs
- MergePropertyDescriptor.cs
- ServiceManager.cs
- XPathArrayIterator.cs
- CroppedBitmap.cs
- Parsers.cs
- Int32AnimationBase.cs
- ConfigurationStrings.cs
- RegionIterator.cs