Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Cache / OutputCacheEntry.cs / 1305376 / OutputCacheEntry.cs
using System; using System.Collections.Generic; using System.Security.Permissions; using System.Web; namespace System.Web.Caching { [Serializable] internal class OutputCacheEntry: IOutputCacheEntry { // fields that hold metadata for the entry private Guid _cachedVaryId; private HttpCachePolicySettings _settings; private string _kernelCacheUrl; private string _dependenciesKey; private string[] _dependencies; // file dependencies //response fields private int _statusCode; private String _statusDescription; private List_headerElements; private List _responseElements; internal Guid CachedVaryId { get { return _cachedVaryId; } } internal HttpCachePolicySettings Settings { get { return _settings; } } internal string KernelCacheUrl { get { return _kernelCacheUrl; } } internal string DependenciesKey { get { return _dependenciesKey; } } internal string[] Dependencies { get { return _dependencies; } } internal int StatusCode { get { return _statusCode; } } internal string StatusDescription { get { return _statusDescription; } } public List HeaderElements { get { return _headerElements; } set { _headerElements = value; } } public List ResponseElements { get { return _responseElements; } set { _responseElements = value; } } private OutputCacheEntry() { // hide default constructor } internal OutputCacheEntry(Guid cachedVaryId, HttpCachePolicySettings settings, string kernelCacheUrl, string dependenciesKey, string[] dependencies, int statusCode, string statusDescription, List headerElements, List responseElements) { _cachedVaryId = cachedVaryId; _settings = settings; _kernelCacheUrl = kernelCacheUrl; _dependenciesKey = dependenciesKey; _dependencies = dependencies; _statusCode = statusCode; _statusDescription = statusDescription; _headerElements = headerElements; _responseElements = responseElements; } } } // 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
- SchemaImporterExtensionElement.cs
- CategoryEditor.cs
- DatasetMethodGenerator.cs
- UrlMappingCollection.cs
- OLEDB_Util.cs
- recordstatescratchpad.cs
- GradientSpreadMethodValidation.cs
- Button.cs
- MessageHeaderDescription.cs
- TypeFieldSchema.cs
- TextContainer.cs
- GridErrorDlg.cs
- HtmlElementErrorEventArgs.cs
- Internal.cs
- WebPartAddingEventArgs.cs
- XmlFormatMapping.cs
- CheckBox.cs
- TemplateContentLoader.cs
- FixedTextPointer.cs
- TreeNodeClickEventArgs.cs
- PropertyChangedEventArgs.cs
- AstNode.cs
- Lease.cs
- ItemDragEvent.cs
- IisTraceListener.cs
- InkCanvas.cs
- UniqueConstraint.cs
- BitStack.cs
- DataGridViewHeaderCell.cs
- ScriptHandlerFactory.cs
- CapabilitiesPattern.cs
- RequestTimeoutManager.cs
- SizeConverter.cs
- LinqDataSourceUpdateEventArgs.cs
- ExceptionRoutedEventArgs.cs
- PagerSettings.cs
- HttpCookiesSection.cs
- ApplicationProxyInternal.cs
- Queue.cs
- SqlProfileProvider.cs
- OneOfElement.cs
- DataGridViewBand.cs
- errorpatternmatcher.cs
- ValidatingReaderNodeData.cs
- GridItemProviderWrapper.cs
- SQLInt16.cs
- ReflectPropertyDescriptor.cs
- FixedHyperLink.cs
- SafeNativeMethods.cs
- ClientEventManager.cs
- BitmapEffectDrawing.cs
- ModelPropertyCollectionImpl.cs
- XsltSettings.cs
- FixUp.cs
- Expressions.cs
- exports.cs
- WebRequest.cs
- DeviceFiltersSection.cs
- WebPartMenu.cs
- RoutedEvent.cs
- SecureStringHasher.cs
- EncoderParameter.cs
- UrlMappingsSection.cs
- EntityTypeBase.cs
- FontDialog.cs
- GatewayDefinition.cs
- Path.cs
- WizardPanel.cs
- XmlFormatExtensionPointAttribute.cs
- DbParameterCollectionHelper.cs
- MissingFieldException.cs
- If.cs
- mediaeventshelper.cs
- ExpressionConverter.cs
- SerializationAttributes.cs
- RootProfilePropertySettingsCollection.cs
- ProfileParameter.cs
- WebRequestModuleElementCollection.cs
- TreeNodeClickEventArgs.cs
- IdentityReference.cs
- SQLConvert.cs
- SQLInt64.cs
- ScriptModule.cs
- TextTreeRootNode.cs
- XmlCollation.cs
- CheckBox.cs
- DefaultConfirmation.cs
- TextDecorations.cs
- CardSpaceException.cs
- OdbcTransaction.cs
- WebMessageEncodingElement.cs
- IgnoreFileBuildProvider.cs
- DocumentApplication.cs
- ButtonRenderer.cs
- NetPeerTcpBindingCollectionElement.cs
- WindowsFormsHelpers.cs
- SessionStateItemCollection.cs
- Utils.cs
- DoubleLinkList.cs
- Point3DValueSerializer.cs