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 / DataKey.cs / 1 / DataKey.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; using System.Collections.Specialized; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class DataKey : IStateManager { private IOrderedDictionary _keyTable; private bool _isTracking; private string[] _keyNames; public DataKey(IOrderedDictionary keyTable) { _keyTable = keyTable; } public DataKey(IOrderedDictionary keyTable, string[] keyNames) : this(keyTable) { _keyNames = keyNames; } ////// Inheritable overridable implementation of IsTrackingViewState /// protected virtual bool IsTrackingViewState { get { return _isTracking; } } public virtual object this[int index] { get { return _keyTable[index]; } } public virtual object this[string name] { get { return _keyTable[name]; } } public virtual object Value { get { if (_keyTable.Count > 0) { return _keyTable[0]; } return null; } } public virtual IOrderedDictionary Values { get { if (_keyTable is OrderedDictionary) { return ((OrderedDictionary)_keyTable).AsReadOnly(); } // don't return the actual table because we don't want the user to mess with it. if (_keyTable is ICloneable) { return (IOrderedDictionary)((ICloneable)_keyTable).Clone(); } OrderedDictionary table = new OrderedDictionary(); foreach (DictionaryEntry entry in _keyTable) { table.Add(entry.Key, entry.Value); } return table.AsReadOnly(); } } ////// Inheritable overridable implementation of LoadViewState /// protected virtual void LoadViewState(object state) { if (state != null) { if (_keyNames != null) { object [] myState = (object [])state; // if we have key names, then we only stored values. if (myState[0] != null) { for (int i = 0; i < myState.Length && i < _keyNames.Length; i++) { _keyTable.Add(_keyNames[i], myState[i]); } } } else { if (state != null) { ArrayList stateArrayList = state as ArrayList; if (stateArrayList == null) { throw new HttpException(SR.GetString(SR.ViewState_InvalidViewState)); } OrderedDictionaryStateHelper.LoadViewState(_keyTable, stateArrayList); } } } } ////// Inheritable overridable implementation of SaveViewState /// protected virtual object SaveViewState() { int count = _keyTable.Count; if (count > 0) { object myState; if (_keyNames != null) { // if we have key names, then we only have to store values. myState = new object[count]; for (int i = 0; i < count; i++) { ((object[])myState)[i] = _keyTable[i]; } } else { myState = OrderedDictionaryStateHelper.SaveViewState(_keyTable); } return myState; } return null; } ////// Inheritable overridable implementation of TrackViewState /// protected virtual void TrackViewState() { _isTracking = true; } #region IStateManager implementation ///bool IStateManager.IsTrackingViewState { get { return IsTrackingViewState; } } /// void IStateManager.LoadViewState(object state) { LoadViewState(state); } /// object IStateManager.SaveViewState() { return SaveViewState(); } /// void IStateManager.TrackViewState() { TrackViewState(); } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; using System.Collections.Specialized; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class DataKey : IStateManager { private IOrderedDictionary _keyTable; private bool _isTracking; private string[] _keyNames; public DataKey(IOrderedDictionary keyTable) { _keyTable = keyTable; } public DataKey(IOrderedDictionary keyTable, string[] keyNames) : this(keyTable) { _keyNames = keyNames; } ////// Inheritable overridable implementation of IsTrackingViewState /// protected virtual bool IsTrackingViewState { get { return _isTracking; } } public virtual object this[int index] { get { return _keyTable[index]; } } public virtual object this[string name] { get { return _keyTable[name]; } } public virtual object Value { get { if (_keyTable.Count > 0) { return _keyTable[0]; } return null; } } public virtual IOrderedDictionary Values { get { if (_keyTable is OrderedDictionary) { return ((OrderedDictionary)_keyTable).AsReadOnly(); } // don't return the actual table because we don't want the user to mess with it. if (_keyTable is ICloneable) { return (IOrderedDictionary)((ICloneable)_keyTable).Clone(); } OrderedDictionary table = new OrderedDictionary(); foreach (DictionaryEntry entry in _keyTable) { table.Add(entry.Key, entry.Value); } return table.AsReadOnly(); } } ////// Inheritable overridable implementation of LoadViewState /// protected virtual void LoadViewState(object state) { if (state != null) { if (_keyNames != null) { object [] myState = (object [])state; // if we have key names, then we only stored values. if (myState[0] != null) { for (int i = 0; i < myState.Length && i < _keyNames.Length; i++) { _keyTable.Add(_keyNames[i], myState[i]); } } } else { if (state != null) { ArrayList stateArrayList = state as ArrayList; if (stateArrayList == null) { throw new HttpException(SR.GetString(SR.ViewState_InvalidViewState)); } OrderedDictionaryStateHelper.LoadViewState(_keyTable, stateArrayList); } } } } ////// Inheritable overridable implementation of SaveViewState /// protected virtual object SaveViewState() { int count = _keyTable.Count; if (count > 0) { object myState; if (_keyNames != null) { // if we have key names, then we only have to store values. myState = new object[count]; for (int i = 0; i < count; i++) { ((object[])myState)[i] = _keyTable[i]; } } else { myState = OrderedDictionaryStateHelper.SaveViewState(_keyTable); } return myState; } return null; } ////// Inheritable overridable implementation of TrackViewState /// protected virtual void TrackViewState() { _isTracking = true; } #region IStateManager implementation ///bool IStateManager.IsTrackingViewState { get { return IsTrackingViewState; } } /// void IStateManager.LoadViewState(object state) { LoadViewState(state); } /// object IStateManager.SaveViewState() { return SaveViewState(); } /// void IStateManager.TrackViewState() { 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
- TextContainer.cs
- Empty.cs
- wmiprovider.cs
- Merger.cs
- TaskFileService.cs
- DataServiceContext.cs
- MLangCodePageEncoding.cs
- CodeTypeConstructor.cs
- Literal.cs
- RuntimeHelpers.cs
- SystemResourceKey.cs
- BlockUIContainer.cs
- CancelEventArgs.cs
- odbcmetadatacollectionnames.cs
- _OverlappedAsyncResult.cs
- OperandQuery.cs
- DataGridViewMethods.cs
- SafeThreadHandle.cs
- QuaternionKeyFrameCollection.cs
- VirtualizingStackPanel.cs
- WebPartConnectionsEventArgs.cs
- HttpProfileGroupBase.cs
- OneWayChannelListener.cs
- PasswordRecoveryDesigner.cs
- VersionedStream.cs
- CqlWriter.cs
- StringPropertyBuilder.cs
- SafeSecurityHelper.cs
- BaseAsyncResult.cs
- MailWebEventProvider.cs
- BinaryFormatter.cs
- ObjectTokenCategory.cs
- SqlFunctionAttribute.cs
- TextBoxAutomationPeer.cs
- DetailsViewUpdatedEventArgs.cs
- CharacterShapingProperties.cs
- IntSecurity.cs
- MasterPageCodeDomTreeGenerator.cs
- LoadItemsEventArgs.cs
- FeatureAttribute.cs
- SmiSettersStream.cs
- BamlMapTable.cs
- FixUp.cs
- VisualTarget.cs
- CodeTypeReferenceCollection.cs
- HtmlPhoneCallAdapter.cs
- SqlTransaction.cs
- WCFBuildProvider.cs
- FrameworkElement.cs
- EnumMember.cs
- SQlBooleanStorage.cs
- FormsAuthenticationModule.cs
- InstalledFontCollection.cs
- BrowserCapabilitiesFactoryBase.cs
- XmlReflectionImporter.cs
- ObfuscationAttribute.cs
- Roles.cs
- ResourceExpressionEditor.cs
- TextTreeNode.cs
- BitmapEffect.cs
- GridEntryCollection.cs
- IODescriptionAttribute.cs
- DocumentXPathNavigator.cs
- StreamGeometry.cs
- HistoryEventArgs.cs
- PackagingUtilities.cs
- SelectedDatesCollection.cs
- ContentPlaceHolder.cs
- loginstatus.cs
- WriteTimeStream.cs
- ElementHostPropertyMap.cs
- DataConnectionHelper.cs
- DataPagerCommandEventArgs.cs
- SymDocumentType.cs
- HitTestFilterBehavior.cs
- DefaultEventAttribute.cs
- DocumentSchemaValidator.cs
- KeyboardDevice.cs
- CurrentChangingEventManager.cs
- DoubleLink.cs
- ProgressBar.cs
- Hashtable.cs
- QuaternionRotation3D.cs
- MissingMemberException.cs
- Int32AnimationBase.cs
- CodeFieldReferenceExpression.cs
- IDictionary.cs
- ApplicationTrust.cs
- AsymmetricSignatureFormatter.cs
- PermissionToken.cs
- KeysConverter.cs
- DataListItemEventArgs.cs
- SerializationFieldInfo.cs
- StringPropertyBuilder.cs
- TemplatedControlDesigner.cs
- KeyTime.cs
- PasswordBox.cs
- DeferredReference.cs
- WebPartVerbCollection.cs
- XhtmlTextWriter.cs