Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebControls / DataKeyArray.cs / 1 / DataKeyArray.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 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. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ // // 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 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. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HtmlTableRow.cs
- RightsManagementEncryptedStream.cs
- DataStreamFromComStream.cs
- InlineCollection.cs
- DataControlPagerLinkButton.cs
- RegexMatchCollection.cs
- Zone.cs
- XmlSchemaChoice.cs
- WSFederationHttpSecurityMode.cs
- MessagingDescriptionAttribute.cs
- DocumentCollection.cs
- WithParamAction.cs
- ContextInformation.cs
- UrlMappingsSection.cs
- SqlDataSourceSelectingEventArgs.cs
- AssemblyCollection.cs
- SendingRequestEventArgs.cs
- FontNameConverter.cs
- ReflectTypeDescriptionProvider.cs
- HtmlAnchor.cs
- PackagePartCollection.cs
- URLAttribute.cs
- Int64Converter.cs
- MembershipAdapter.cs
- XmlTextWriter.cs
- ForEachAction.cs
- RenameRuleObjectDialog.cs
- WindowsEditBox.cs
- HebrewNumber.cs
- PermissionSet.cs
- PathGeometry.cs
- EditorBrowsableAttribute.cs
- UnauthorizedWebPart.cs
- ButtonChrome.cs
- ModelItemKeyValuePair.cs
- PointLightBase.cs
- Subtree.cs
- XmlChoiceIdentifierAttribute.cs
- SessionIDManager.cs
- DataSourceControl.cs
- MatrixAnimationBase.cs
- CompiledQueryCacheKey.cs
- EarlyBoundInfo.cs
- MissingMemberException.cs
- DependencyPropertyHelper.cs
- IgnoreSectionHandler.cs
- ipaddressinformationcollection.cs
- SmiEventStream.cs
- AttributeCollection.cs
- HWStack.cs
- TabletCollection.cs
- URLMembershipCondition.cs
- SmtpReplyReaderFactory.cs
- KnownBoxes.cs
- Region.cs
- Condition.cs
- InputReferenceExpression.cs
- DetailsView.cs
- Interlocked.cs
- Setter.cs
- ServiceOperation.cs
- RegexEditorDialog.cs
- DecoderExceptionFallback.cs
- AutoCompleteStringCollection.cs
- ReliabilityContractAttribute.cs
- Profiler.cs
- UserControlCodeDomTreeGenerator.cs
- EncryptedXml.cs
- SmtpClient.cs
- ObjectDataSourceFilteringEventArgs.cs
- SmiEventStream.cs
- AlphaSortedEnumConverter.cs
- SystemIPv6InterfaceProperties.cs
- CodeTypeReferenceExpression.cs
- FreezableDefaultValueFactory.cs
- InheritanceContextChangedEventManager.cs
- TextEditorThreadLocalStore.cs
- TypeSource.cs
- TransformGroup.cs
- RegexFCD.cs
- SiteOfOriginContainer.cs
- ExpressionBuilderCollection.cs
- BasicHttpSecurityMode.cs
- DataGridViewColumn.cs
- BlurBitmapEffect.cs
- ArrangedElement.cs
- XmlAnyElementAttribute.cs
- RecordManager.cs
- MethodSet.cs
- Point3DCollectionValueSerializer.cs
- ReceiveSecurityHeader.cs
- SQLDoubleStorage.cs
- FunctionDescription.cs
- ViewManager.cs
- HttpRawResponse.cs
- CatalogPartCollection.cs
- SchemaMerger.cs
- InputMethodStateChangeEventArgs.cs
- BitmapScalingModeValidation.cs
- FixedDocument.cs