Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / OutputCacheProfileCollection.cs / 1305376 / 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))] 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))] 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
- GetLastErrorDetailsRequest.cs
- ContourSegment.cs
- SkewTransform.cs
- DisplayMemberTemplateSelector.cs
- Overlapped.cs
- TagPrefixCollection.cs
- CallbackValidatorAttribute.cs
- IntranetCredentialPolicy.cs
- PrivilegeNotHeldException.cs
- IndexedString.cs
- TemplateManager.cs
- PersonalizationAdministration.cs
- ConfigurationStrings.cs
- SQLUtility.cs
- TraceLog.cs
- StateMachineExecutionState.cs
- DelegatingConfigHost.cs
- Brush.cs
- ExtendedProperty.cs
- EntityContainerEmitter.cs
- VScrollBar.cs
- httpstaticobjectscollection.cs
- ModelPropertyDescriptor.cs
- HeaderCollection.cs
- SchemaContext.cs
- DelayedRegex.cs
- MouseButtonEventArgs.cs
- ArrayExtension.cs
- ServerValidateEventArgs.cs
- CollectionExtensions.cs
- PublisherIdentityPermission.cs
- ResolveRequestResponseAsyncResult.cs
- AnnotationAuthorChangedEventArgs.cs
- ErrorWebPart.cs
- AppDomainFactory.cs
- ProfileManager.cs
- CodeGenerator.cs
- ExceptionRoutedEventArgs.cs
- FileDialogCustomPlacesCollection.cs
- Misc.cs
- WorkflowApplicationEventArgs.cs
- OutputCacheSettingsSection.cs
- ObjectMaterializedEventArgs.cs
- WorkflowDefinitionContext.cs
- DocumentApplication.cs
- HtmlTernaryTree.cs
- RequestCachingSection.cs
- IdnElement.cs
- Scene3D.cs
- Socket.cs
- RenamedEventArgs.cs
- TypedTableBaseExtensions.cs
- CompiledIdentityConstraint.cs
- DataBoundLiteralControl.cs
- DBParameter.cs
- ContextDataSourceContextData.cs
- Polyline.cs
- MappingModelBuildProvider.cs
- ErrorCodes.cs
- BrowserCapabilitiesCodeGenerator.cs
- BinaryWriter.cs
- PrincipalPermission.cs
- CurrencyManager.cs
- MenuItem.cs
- QuaternionAnimation.cs
- UpWmlMobileTextWriter.cs
- AssemblyAttributesGoHere.cs
- AuthenticationService.cs
- ConnectionManagementElement.cs
- LinearQuaternionKeyFrame.cs
- ChannelManager.cs
- TreeView.cs
- TouchEventArgs.cs
- EmptyQuery.cs
- ProcessThread.cs
- PartialCachingControl.cs
- ImageCodecInfo.cs
- ChannelPool.cs
- WebPartDescription.cs
- TimelineGroup.cs
- EditorOptionAttribute.cs
- BridgeDataRecord.cs
- NamespaceCollection.cs
- ReadWriteSpinLock.cs
- IndentedTextWriter.cs
- ButtonStandardAdapter.cs
- IncrementalHitTester.cs
- PrivilegedConfigurationManager.cs
- DocumentOutline.cs
- MethodRental.cs
- CssTextWriter.cs
- RemotingServices.cs
- Object.cs
- SecurityPermission.cs
- DetailsViewDeleteEventArgs.cs
- httpapplicationstate.cs
- CompoundFileDeflateTransform.cs
- XslAst.cs
- TwoPhaseCommit.cs
- ToolStripGrip.cs