Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / UI / PageStatePersister.cs / 1 / PageStatePersister.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System.Collections; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public abstract class PageStatePersister { private Page _page; private object _viewState; private object _controlState; private IStateFormatter _stateFormatter; protected PageStatePersister (Page page) { if (page == null) { throw new ArgumentNullException("page", SR.GetString(SR.PageStatePersister_PageCannotBeNull)); } _page = page; } public object ControlState { get { return _controlState; } set { _controlState = value; } } ////// Provides the formatter used to serialize and deserialize the object graph representing the /// state to be persisted. /// protected IStateFormatter StateFormatter { get { if (_stateFormatter == null) { _stateFormatter = Page.CreateStateFormatter(); } return _stateFormatter; } } protected Page Page { get { return _page; } set { _page = value; } } public object ViewState { get { return _viewState; } set { _viewState = value; } } public abstract void Load(); public abstract void Save(); } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System.Collections; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public abstract class PageStatePersister { private Page _page; private object _viewState; private object _controlState; private IStateFormatter _stateFormatter; protected PageStatePersister (Page page) { if (page == null) { throw new ArgumentNullException("page", SR.GetString(SR.PageStatePersister_PageCannotBeNull)); } _page = page; } public object ControlState { get { return _controlState; } set { _controlState = value; } } ////// Provides the formatter used to serialize and deserialize the object graph representing the /// state to be persisted. /// protected IStateFormatter StateFormatter { get { if (_stateFormatter == null) { _stateFormatter = Page.CreateStateFormatter(); } return _stateFormatter; } } protected Page Page { get { return _page; } set { _page = value; } } public object ViewState { get { return _viewState; } set { _viewState = value; } } public abstract void Load(); public abstract void Save(); } } // 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
- WorkflowServiceHost.cs
- DocobjHost.cs
- ListenerAdaptersInstallComponent.cs
- ListViewItemEventArgs.cs
- BuilderPropertyEntry.cs
- XmlSchemaInclude.cs
- DateTimeConstantAttribute.cs
- DataBoundControlActionList.cs
- ConfigurationValidatorAttribute.cs
- IResourceProvider.cs
- TextServicesCompartmentContext.cs
- ImageListStreamer.cs
- IsolatedStorageFilePermission.cs
- ToolStripControlHost.cs
- SchemaTypeEmitter.cs
- ZipIOLocalFileHeader.cs
- XmlCodeExporter.cs
- EdmToObjectNamespaceMap.cs
- CodeAttributeArgumentCollection.cs
- StandardOleMarshalObject.cs
- ListChangedEventArgs.cs
- TableLayoutStyleCollection.cs
- PolyBezierSegmentFigureLogic.cs
- FontNamesConverter.cs
- EntityType.cs
- ContentControl.cs
- WebExceptionStatus.cs
- SecurityPolicySection.cs
- DataGridRowDetailsEventArgs.cs
- DataGridViewRowStateChangedEventArgs.cs
- OrderByBuilder.cs
- ImageDrawing.cs
- Comparer.cs
- HeaderUtility.cs
- BindingWorker.cs
- SafeHandles.cs
- ResXResourceWriter.cs
- XmlConvert.cs
- Deserializer.cs
- DataListItem.cs
- DataChangedEventManager.cs
- controlskin.cs
- PrimitiveCodeDomSerializer.cs
- XmlSchemaAppInfo.cs
- TransformerInfoCollection.cs
- HttpListenerElement.cs
- EtwTrace.cs
- ConnectionStringsExpressionBuilder.cs
- FlowDecisionDesigner.xaml.cs
- SettingsAttributeDictionary.cs
- HttpInputStream.cs
- SymLanguageVendor.cs
- BinaryMessageEncodingElement.cs
- Int32Rect.cs
- DataKey.cs
- AnnotationDocumentPaginator.cs
- ServiceDebugElement.cs
- DependencyObjectType.cs
- Span.cs
- DataPagerField.cs
- WindowsAuthenticationModule.cs
- ToolboxItemFilterAttribute.cs
- MsmqIntegrationProcessProtocolHandler.cs
- UpdateTranslator.cs
- ApplicationActivator.cs
- EntityClientCacheKey.cs
- DataControlPagerLinkButton.cs
- ConnectionInterfaceCollection.cs
- SqlHelper.cs
- ReturnEventArgs.cs
- TargetConverter.cs
- Rotation3D.cs
- Model3DGroup.cs
- RadioButtonAutomationPeer.cs
- SQLDoubleStorage.cs
- AspCompat.cs
- FixedTextView.cs
- JsonFormatReaderGenerator.cs
- SubtreeProcessor.cs
- ApplicationFileCodeDomTreeGenerator.cs
- XPathItem.cs
- PreparingEnlistment.cs
- RefreshEventArgs.cs
- TCEAdapterGenerator.cs
- FixUp.cs
- CodeMemberProperty.cs
- ScrollItemPattern.cs
- Profiler.cs
- TriggerAction.cs
- TemplateField.cs
- RuntimeEnvironment.cs
- UnsafeNativeMethods.cs
- WebServiceEnumData.cs
- EventListenerClientSide.cs
- UnsafeNativeMethods.cs
- StylusPointProperty.cs
- StringReader.cs
- SqlDataSourceEnumerator.cs
- SpeakProgressEventArgs.cs
- ImageMapEventArgs.cs