Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / xsp / System / Web / Configuration / BufferModesCollection.cs / 1 / BufferModesCollection.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.ComponentModel; using System.Web.Hosting; using System.Web.Util; using System.Web.Configuration; using System.Web.Management; using System.Web.Compilation; using System.Security.Permissions; [ConfigurationCollection(typeof(BufferModeSettings))] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class BufferModesCollection : ConfigurationElementCollection { private static ConfigurationPropertyCollection _properties; static BufferModesCollection() { // Property initialization _properties = new ConfigurationPropertyCollection(); } public BufferModesCollection() { } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } public void Add(BufferModeSettings bufferModeSettings) { BaseAdd(bufferModeSettings); } public void Remove(String s) { BaseRemove(s); } public void Clear() { BaseClear(); } protected override ConfigurationElement CreateNewElement() { return new BufferModeSettings(); } protected override Object GetElementKey(ConfigurationElement element) { return ((BufferModeSettings)element).Name; } public new BufferModeSettings this[string key] { get { return (BufferModeSettings)BaseGet(key); } } public BufferModeSettings this[int index] { get { return (BufferModeSettings)BaseGet(index); } set { if (BaseGet(index) != null) { BaseRemoveAt(index); } BaseAdd(index, value); } } } } // 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.ComponentModel; using System.Web.Hosting; using System.Web.Util; using System.Web.Configuration; using System.Web.Management; using System.Web.Compilation; using System.Security.Permissions; [ConfigurationCollection(typeof(BufferModeSettings))] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class BufferModesCollection : ConfigurationElementCollection { private static ConfigurationPropertyCollection _properties; static BufferModesCollection() { // Property initialization _properties = new ConfigurationPropertyCollection(); } public BufferModesCollection() { } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } public void Add(BufferModeSettings bufferModeSettings) { BaseAdd(bufferModeSettings); } public void Remove(String s) { BaseRemove(s); } public void Clear() { BaseClear(); } protected override ConfigurationElement CreateNewElement() { return new BufferModeSettings(); } protected override Object GetElementKey(ConfigurationElement element) { return ((BufferModeSettings)element).Name; } public new BufferModeSettings this[string key] { get { return (BufferModeSettings)BaseGet(key); } } public BufferModeSettings this[int index] { get { return (BufferModeSettings)BaseGet(index); } set { if (BaseGet(index) != null) { BaseRemoveAt(index); } BaseAdd(index, value); } } } } // 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
- WindowsFormsSectionHandler.cs
- FileDetails.cs
- BigInt.cs
- SchemaEntity.cs
- XamlStyleSerializer.cs
- DelegatingConfigHost.cs
- CodeTypeDelegate.cs
- EntityUtil.cs
- CachedFontFamily.cs
- CompilerScope.cs
- CrossAppDomainChannel.cs
- _ConnectionGroup.cs
- RuntimeArgumentHandle.cs
- CorrelationService.cs
- URLIdentityPermission.cs
- WithStatement.cs
- CodeObject.cs
- SizeAnimationBase.cs
- TextEmbeddedObject.cs
- DesignerLoader.cs
- Task.cs
- CssClassPropertyAttribute.cs
- CodeDelegateCreateExpression.cs
- DataRowCollection.cs
- GroupPartitionExpr.cs
- SQLByteStorage.cs
- XmlDocument.cs
- CookieProtection.cs
- ConfigXmlWhitespace.cs
- DesignTimeHTMLTextWriter.cs
- OrthographicCamera.cs
- NavigationProperty.cs
- Matrix.cs
- MSG.cs
- TextEditorDragDrop.cs
- EmptyElement.cs
- WebRequestModulesSection.cs
- CodePrimitiveExpression.cs
- ProgressBarRenderer.cs
- TreeNodeEventArgs.cs
- SizeConverter.cs
- TypeDescriptionProvider.cs
- Matrix3D.cs
- XmlComment.cs
- SHA1CryptoServiceProvider.cs
- SessionSwitchEventArgs.cs
- ToolStripDropDownItem.cs
- SqlDataReader.cs
- DataKey.cs
- ProcessHostMapPath.cs
- GeneratedContractType.cs
- ImmutableObjectAttribute.cs
- ThreadAttributes.cs
- DescendentsWalkerBase.cs
- DataControlFieldHeaderCell.cs
- HttpApplicationFactory.cs
- GenericEnumerator.cs
- AbstractDataSvcMapFileLoader.cs
- ContractNamespaceAttribute.cs
- WeakHashtable.cs
- SecureStringHasher.cs
- IxmlLineInfo.cs
- CodeGenerator.cs
- RegexCompiler.cs
- DataGridTablesFactory.cs
- BinaryCommonClasses.cs
- RegionIterator.cs
- recordstatefactory.cs
- XPathNode.cs
- XmlMtomReader.cs
- MediaElementAutomationPeer.cs
- PathGradientBrush.cs
- LoaderAllocator.cs
- Utils.cs
- EntityDesignerBuildProvider.cs
- contentDescriptor.cs
- compensatingcollection.cs
- RelationshipNavigation.cs
- CompositeScriptReference.cs
- SignatureToken.cs
- DeclarativeCatalogPart.cs
- InternalsVisibleToAttribute.cs
- XmlDownloadManager.cs
- XmlSchemaExternal.cs
- InheritanceContextChangedEventManager.cs
- DefaultProxySection.cs
- Int16.cs
- StateRuntime.cs
- NavigateEvent.cs
- PropertyGeneratedEventArgs.cs
- TextParentUndoUnit.cs
- ComponentConverter.cs
- RuntimeWrappedException.cs
- MatrixTransform.cs
- Processor.cs
- EventMap.cs
- ToolStripOverflowButton.cs
- TypeLoadException.cs
- Activator.cs
- SerializationStore.cs