Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / ControlCachePolicy.cs / 1 / ControlCachePolicy.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System; using System.IO; using System.Text; using System.Collections; using System.Collections.Specialized; using System.ComponentModel; using System.ComponentModel.Design; using System.Globalization; using System.Web; using System.Web.Util; using System.Web.UI.WebControls; using System.Web.Caching; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class ControlCachePolicy { private static ControlCachePolicy _cachePolicyStub = new ControlCachePolicy(); private BasePartialCachingControl _pcc; internal ControlCachePolicy() { } internal ControlCachePolicy(BasePartialCachingControl pcc) { _pcc = pcc; } internal static ControlCachePolicy GetCachePolicyStub() { // Return a stub, which returns SupportsCaching==false and throws on everything else. return _cachePolicyStub; } // Check whether it is valid to access properties on this object private void CheckValidCallingContext() { // If it's not being cached, the CachePolicy can't be used if (_pcc == null) { throw new HttpException( SR.GetString(SR.UC_not_cached)); } // Make sure it's not being used too late if (_pcc.ControlState >= ControlState.PreRendered) { throw new HttpException( SR.GetString(SR.UCCachePolicy_unavailable)); } } public bool SupportsCaching { get { // Caching is supported if we have a PartialCachingControl return (_pcc != null); } } public bool Cached { get { CheckValidCallingContext(); return !_pcc._cachingDisabled; } set { CheckValidCallingContext(); _pcc._cachingDisabled = !value; } } public TimeSpan Duration { get { CheckValidCallingContext(); return _pcc.Duration; } set { CheckValidCallingContext(); _pcc.Duration = value; } } public HttpCacheVaryByParams VaryByParams { get { CheckValidCallingContext(); return _pcc.VaryByParams; } } public string VaryByControl { get { CheckValidCallingContext(); return _pcc.VaryByControl; } set { CheckValidCallingContext(); _pcc.VaryByControl = value; } } public CacheDependency Dependency { get { CheckValidCallingContext(); return _pcc.Dependency; } set { CheckValidCallingContext(); _pcc.Dependency = value; } } public void SetVaryByCustom(string varyByCustom) { CheckValidCallingContext(); _pcc._varyByCustom = varyByCustom; } public void SetSlidingExpiration(bool useSlidingExpiration) { CheckValidCallingContext(); _pcc._useSlidingExpiration = useSlidingExpiration; } public void SetExpires(DateTime expirationTime) { CheckValidCallingContext(); _pcc._utcExpirationTime = DateTimeUtil.ConvertToUniversalTime(expirationTime); } } } // 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
- LoginAutoFormat.cs
- EditingContext.cs
- Win32SafeHandles.cs
- TextElementEnumerator.cs
- AtomParser.cs
- SamlAuthorizationDecisionStatement.cs
- XPathParser.cs
- XmlTypeMapping.cs
- FileDialogPermission.cs
- InputScopeConverter.cs
- TextOutput.cs
- DesignerMetadata.cs
- ProtocolsConfigurationHandler.cs
- LogReservationCollection.cs
- UnsafeNativeMethods.cs
- ListView.cs
- TextContainerChangeEventArgs.cs
- TransactionChannelListener.cs
- KoreanLunisolarCalendar.cs
- HashHelper.cs
- ToolStripSettings.cs
- WebPartExportVerb.cs
- SignatureDescription.cs
- MethodMessage.cs
- TaskHelper.cs
- SafeCertificateStore.cs
- Soap12FormatExtensions.cs
- MethodBuilder.cs
- NetMsmqBindingCollectionElement.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- InfoCardAsymmetricCrypto.cs
- MustUnderstandSoapException.cs
- DataRelationPropertyDescriptor.cs
- BindingsCollection.cs
- RenderOptions.cs
- SerializationStore.cs
- LateBoundChannelParameterCollection.cs
- DirectoryNotFoundException.cs
- ISAPIApplicationHost.cs
- StrongNameSignatureInformation.cs
- HotSpotCollection.cs
- ServiceProviders.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- ToolStripLabel.cs
- DataGridSortCommandEventArgs.cs
- HandlerBase.cs
- IdentityVerifier.cs
- AdornerPresentationContext.cs
- SerializationSectionGroup.cs
- AstTree.cs
- WebPartDisplayModeEventArgs.cs
- DataRecordObjectView.cs
- ConnectionConsumerAttribute.cs
- GlobalProxySelection.cs
- ServiceOperation.cs
- BaseParagraph.cs
- Int32RectValueSerializer.cs
- counter.cs
- CollectionEditor.cs
- SortedList.cs
- RubberbandSelector.cs
- TypeResolvingOptions.cs
- _CacheStreams.cs
- DataConnectionHelper.cs
- HelpEvent.cs
- WebRequest.cs
- SoapSchemaExporter.cs
- FunctionNode.cs
- OptionUsage.cs
- TreeView.cs
- EllipseGeometry.cs
- MapPathBasedVirtualPathProvider.cs
- TraceShell.cs
- FileDialogCustomPlace.cs
- QilStrConcat.cs
- WorkflowTransactionService.cs
- XmlLanguage.cs
- EventLogPermission.cs
- TransformGroup.cs
- HttpPostClientProtocol.cs
- NetTcpSecurityElement.cs
- FileLevelControlBuilderAttribute.cs
- Schema.cs
- ValidatorUtils.cs
- HotSpot.cs
- GraphicsPathIterator.cs
- ComponentCollection.cs
- Soap.cs
- AccessDataSourceView.cs
- EdmEntityTypeAttribute.cs
- ListDictionaryInternal.cs
- SecurityCriticalDataForSet.cs
- EdmRelationshipNavigationPropertyAttribute.cs
- ButtonPopupAdapter.cs
- ArglessEventHandlerProxy.cs
- XmlLoader.cs
- CalendarTable.cs
- HwndHost.cs
- LassoSelectionBehavior.cs
- Attribute.cs