Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / OutputCacheSettings.cs / 2 / OutputCacheSettings.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System; using System.Web.Util; using System.Security.Permissions; [FlagsAttribute()] internal enum OutputCacheParameter : int { // Flags to determine if a particular parameter has been set CacheProfile = 0x00000001, Duration = 0x00000002, Enabled = 0x00000004, Location = 0x00000008, NoStore = 0x00000010, SqlDependency = 0x00000020, VaryByControl = 0x00000040, VaryByCustom = 0x00000080, VaryByHeader = 0x00000100, VaryByParam = 0x00000200, VaryByContentEncoding = 0x00000400 } [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class OutputCacheParameters { #pragma warning disable 0649 private SimpleBitVector32 _flags; #pragma warning restore 0649 private bool _enabled = true; private int _duration; private OutputCacheLocation _location; private string _varyByCustom; private string _varyByParam; private string _varyByContentEncoding; private string _varyByHeader; private bool _noStore; private string _sqlDependency; private string _varyByControl; private string _cacheProfile; public OutputCacheParameters() { } internal bool IsParameterSet(OutputCacheParameter value) { return _flags[(int) value]; } public bool Enabled { get { return _enabled; } set { _flags[(int) OutputCacheParameter.Enabled] = true; _enabled = value; } } public int Duration { get { return _duration; } set { _flags[(int) OutputCacheParameter.Duration] = true; _duration = value; } } public OutputCacheLocation Location { get { return _location; } set { _flags[(int) OutputCacheParameter.Location] = true; _location = value; } } public string VaryByCustom { get { return _varyByCustom; } set { _flags[(int) OutputCacheParameter.VaryByCustom] = true; _varyByCustom = value; } } public string VaryByParam { get { return _varyByParam; } set { _flags[(int) OutputCacheParameter.VaryByParam] = true; _varyByParam = value; } } public string VaryByContentEncoding { get { return _varyByContentEncoding; } set { _flags[(int) OutputCacheParameter.VaryByContentEncoding] = true; _varyByContentEncoding = value; } } public string VaryByHeader { get { return _varyByHeader; } set { _flags[(int) OutputCacheParameter.VaryByHeader] = true; _varyByHeader = value; } } public bool NoStore { get { return _noStore; } set { _flags[(int) OutputCacheParameter.NoStore] = true; _noStore = value; } } public string SqlDependency { get { return _sqlDependency; } set { _flags[(int) OutputCacheParameter.SqlDependency] = true; _sqlDependency = value; } } public string VaryByControl { get { return _varyByControl; } set { _flags[(int) OutputCacheParameter.VaryByControl] = true; _varyByControl = value; } } public string CacheProfile { get { return _cacheProfile; } set { _flags[(int) OutputCacheParameter.CacheProfile] = true; _cacheProfile = value; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ConfigXmlText.cs
- AssemblyBuilder.cs
- dataprotectionpermissionattribute.cs
- PageParserFilter.cs
- FontCollection.cs
- ReachSerializableProperties.cs
- SourceFileBuildProvider.cs
- ZipIOFileItemStream.cs
- NavigationHelper.cs
- Button.cs
- FileDialog_Vista_Interop.cs
- IsolationInterop.cs
- HtmlInputHidden.cs
- SimpleApplicationHost.cs
- StylusButtonCollection.cs
- entityreference_tresulttype.cs
- AtomParser.cs
- StorageMappingItemCollection.cs
- StandardToolWindows.cs
- RayMeshGeometry3DHitTestResult.cs
- ElementAtQueryOperator.cs
- Serializer.cs
- GridItemCollection.cs
- HandleRef.cs
- SimpleType.cs
- ToolStripOverflowButton.cs
- Compensation.cs
- State.cs
- DesignerActionMethodItem.cs
- WebRequest.cs
- RemoveStoryboard.cs
- JsonReaderDelegator.cs
- DocumentOutline.cs
- Catch.cs
- SqlUserDefinedTypeAttribute.cs
- BasicAsyncResult.cs
- WindowsFormsSectionHandler.cs
- IndexedEnumerable.cs
- CompoundFileReference.cs
- XmlDictionaryReader.cs
- TreeView.cs
- ServiceProviders.cs
- TypeDescriptorContext.cs
- Int32Rect.cs
- Compilation.cs
- HTMLTextWriter.cs
- Int32Storage.cs
- SqlCrossApplyToCrossJoin.cs
- BooleanConverter.cs
- OrderedParallelQuery.cs
- StringPropertyBuilder.cs
- CreateInstanceBinder.cs
- FtpCachePolicyElement.cs
- PriorityBindingExpression.cs
- ColumnResult.cs
- ArraySortHelper.cs
- EventLogHandle.cs
- ScrollBar.cs
- RemoteArgument.cs
- FormsAuthenticationEventArgs.cs
- DbConnectionPool.cs
- TiffBitmapDecoder.cs
- SqlWebEventProvider.cs
- DesignerView.Commands.cs
- CrossContextChannel.cs
- DataTemplateKey.cs
- EndPoint.cs
- TimeZone.cs
- selecteditemcollection.cs
- OdbcStatementHandle.cs
- DrawingContextWalker.cs
- FlowLayout.cs
- Rotation3DAnimationBase.cs
- WSSecureConversationFeb2005.cs
- BrowserDefinitionCollection.cs
- HtmlInputRadioButton.cs
- ScrollBar.cs
- HttpRuntimeSection.cs
- CRYPTPROTECT_PROMPTSTRUCT.cs
- SessionSwitchEventArgs.cs
- VectorCollectionValueSerializer.cs
- Ipv6Element.cs
- KnownTypesHelper.cs
- ScriptHandlerFactory.cs
- WebBrowserNavigatedEventHandler.cs
- HandlerBase.cs
- CategoryGridEntry.cs
- XPathSelectionIterator.cs
- returneventsaver.cs
- CryptoApi.cs
- HostingEnvironmentSection.cs
- ItemCollection.cs
- AdvancedBindingEditor.cs
- ComponentDispatcher.cs
- DBPropSet.cs
- Axis.cs
- DataGridViewColumnConverter.cs
- SHA384Managed.cs
- MouseActionConverter.cs
- ToolStripButton.cs