Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / Configuration / OutputCacheProfileCollection.cs / 5 / OutputCacheProfileCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Configuration { using System; using System.Xml; using System.Configuration; using System.Collections.Specialized; using System.Collections; using System.Globalization; using System.IO; using System.Text; using System.Web.UI; using System.ComponentModel; using System.Web.Util; using System.Security.Permissions; [ConfigurationCollection(typeof(OutputCacheProfile))] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class OutputCacheProfileCollection : ConfigurationElementCollection { private static ConfigurationPropertyCollection _properties; static OutputCacheProfileCollection() { // Property initialization _properties = new ConfigurationPropertyCollection(); } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } public OutputCacheProfileCollection() : base(StringComparer.OrdinalIgnoreCase) { } // public properties public String[] AllKeys { get { return StringUtil.ObjectArrayToStringArray(BaseGetAllKeys()); } } public new OutputCacheProfile this[string name] { get { return (OutputCacheProfile)BaseGet(name); } // Having a setter here would be strange in that you could write // collection["Name1"] = new OutputCacheProfile("differentName"... // } public OutputCacheProfile this[int index] { get { return (OutputCacheProfile)BaseGet(index); } set { if (BaseGet(index) != null) BaseRemoveAt(index); BaseAdd(index, value); } } // Protected Overrides protected override ConfigurationElement CreateNewElement() { return new OutputCacheProfile(); } protected override Object GetElementKey(ConfigurationElement element) { return ((OutputCacheProfile)element).Name; } // public methods public void Add(OutputCacheProfile name) { BaseAdd(name); } public void Clear() { BaseClear(); } public OutputCacheProfile Get(int index) { return (OutputCacheProfile)BaseGet(index); } public OutputCacheProfile Get(string name) { return (OutputCacheProfile)BaseGet(name); } public String GetKey(int index) { return (String) BaseGetKey(index); } public void Remove(string name) { BaseRemove(name); } public void RemoveAt(int index) { BaseRemoveAt(index); } public void Set(OutputCacheProfile user) { BaseAdd(user, false); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Configuration { using System; using System.Xml; using System.Configuration; using System.Collections.Specialized; using System.Collections; using System.Globalization; using System.IO; using System.Text; using System.Web.UI; using System.ComponentModel; using System.Web.Util; using System.Security.Permissions; [ConfigurationCollection(typeof(OutputCacheProfile))] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class OutputCacheProfileCollection : ConfigurationElementCollection { private static ConfigurationPropertyCollection _properties; static OutputCacheProfileCollection() { // Property initialization _properties = new ConfigurationPropertyCollection(); } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } public OutputCacheProfileCollection() : base(StringComparer.OrdinalIgnoreCase) { } // public properties public String[] AllKeys { get { return StringUtil.ObjectArrayToStringArray(BaseGetAllKeys()); } } public new OutputCacheProfile this[string name] { get { return (OutputCacheProfile)BaseGet(name); } // Having a setter here would be strange in that you could write // collection["Name1"] = new OutputCacheProfile("differentName"... // } public OutputCacheProfile this[int index] { get { return (OutputCacheProfile)BaseGet(index); } set { if (BaseGet(index) != null) BaseRemoveAt(index); BaseAdd(index, value); } } // Protected Overrides protected override ConfigurationElement CreateNewElement() { return new OutputCacheProfile(); } protected override Object GetElementKey(ConfigurationElement element) { return ((OutputCacheProfile)element).Name; } // public methods public void Add(OutputCacheProfile name) { BaseAdd(name); } public void Clear() { BaseClear(); } public OutputCacheProfile Get(int index) { return (OutputCacheProfile)BaseGet(index); } public OutputCacheProfile Get(string name) { return (OutputCacheProfile)BaseGet(name); } public String GetKey(int index) { return (String) BaseGetKey(index); } public void Remove(string name) { BaseRemove(name); } public void RemoveAt(int index) { BaseRemoveAt(index); } public void Set(OutputCacheProfile user) { BaseAdd(user, false); } } } // 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
- AnimationClockResource.cs
- AttachmentCollection.cs
- ColumnHeader.cs
- CompositeFontInfo.cs
- BlobPersonalizationState.cs
- SchemaDeclBase.cs
- UniqueEventHelper.cs
- ThreadExceptionEvent.cs
- CorrelationManager.cs
- EffectiveValueEntry.cs
- HttpListenerPrefixCollection.cs
- SoapFormatExtensions.cs
- Speller.cs
- LockedAssemblyCache.cs
- SqlSupersetValidator.cs
- shaper.cs
- MaskedTextBox.cs
- SharedHttpsTransportManager.cs
- M3DUtil.cs
- DesignTimeParseData.cs
- EventLogger.cs
- xmlsaver.cs
- DesignOnlyAttribute.cs
- PerformanceCounterLib.cs
- DoubleAnimationClockResource.cs
- UpdatableWrapper.cs
- TargetControlTypeAttribute.cs
- FilterFactory.cs
- SqlHelper.cs
- AuthenticationModuleElementCollection.cs
- TcpChannelHelper.cs
- RetriableClipboard.cs
- SortExpressionBuilder.cs
- MediaPlayer.cs
- WeakEventTable.cs
- StringDictionary.cs
- ThrowHelper.cs
- _SecureChannel.cs
- CodeObjectCreateExpression.cs
- TopClause.cs
- ProtectedProviderSettings.cs
- GrammarBuilder.cs
- SkipQueryOptionExpression.cs
- DBSchemaTable.cs
- XmlNamespaceDeclarationsAttribute.cs
- ProcessModelSection.cs
- DirectoryRedirect.cs
- dataprotectionpermissionattribute.cs
- ClrPerspective.cs
- FilteredReadOnlyMetadataCollection.cs
- ResourcesGenerator.cs
- HideDisabledControlAdapter.cs
- ExpandCollapsePattern.cs
- RadioButtonPopupAdapter.cs
- WindowsGraphicsCacheManager.cs
- UnhandledExceptionEventArgs.cs
- RenderOptions.cs
- Zone.cs
- Point3DAnimation.cs
- WebPartZone.cs
- PasswordBox.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- FileNotFoundException.cs
- InternalResources.cs
- Int32Storage.cs
- BCLDebug.cs
- Glyph.cs
- DocumentSequenceHighlightLayer.cs
- SimpleApplicationHost.cs
- HelloMessageCD1.cs
- Baml2006KeyRecord.cs
- ObjectView.cs
- XmlTextAttribute.cs
- RootBrowserWindowAutomationPeer.cs
- AmbientLight.cs
- Serializer.cs
- TabItemWrapperAutomationPeer.cs
- OperatingSystemVersionCheck.cs
- SupportsEventValidationAttribute.cs
- TagPrefixCollection.cs
- KoreanLunisolarCalendar.cs
- CodeParameterDeclarationExpression.cs
- HttpConfigurationSystem.cs
- shaperfactory.cs
- NTAccount.cs
- ProfileProvider.cs
- ReferenceConverter.cs
- TextParagraph.cs
- DesignObjectWrapper.cs
- TimeoutException.cs
- HostVisual.cs
- NonClientArea.cs
- CancelEventArgs.cs
- LinkedList.cs
- TranslateTransform.cs
- AspNetSynchronizationContext.cs
- ParagraphResult.cs
- CellCreator.cs
- PackageDocument.cs
- ArraySegment.cs