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
- DataViewSetting.cs
- PowerModeChangedEventArgs.cs
- WebHttpBehavior.cs
- SQLDouble.cs
- XmlDataFileEditor.cs
- ReflectionTypeLoadException.cs
- TextEndOfLine.cs
- LogSwitch.cs
- ISessionStateStore.cs
- XmlNamedNodeMap.cs
- DataRowChangeEvent.cs
- TextRangeBase.cs
- MainMenu.cs
- ArrayConverter.cs
- ipaddressinformationcollection.cs
- ButtonBaseAdapter.cs
- XmlSerializerVersionAttribute.cs
- BrowserDefinitionCollection.cs
- BrowserTree.cs
- StreamGeometry.cs
- AuthenticationSection.cs
- AddInActivator.cs
- LinkedList.cs
- PartManifestEntry.cs
- DataServiceContext.cs
- SmiEventSink.cs
- PassportAuthentication.cs
- XmlNodeChangedEventArgs.cs
- IODescriptionAttribute.cs
- ChannelCacheSettings.cs
- TextComposition.cs
- Environment.cs
- InlineUIContainer.cs
- MaterialGroup.cs
- hebrewshape.cs
- Crc32.cs
- PhysicalFontFamily.cs
- MLangCodePageEncoding.cs
- SafeFileHandle.cs
- PageThemeBuildProvider.cs
- BaseInfoTable.cs
- SecurityDocument.cs
- ServiceHttpHandlerFactory.cs
- UserControl.cs
- ViewValidator.cs
- DefaultHttpHandler.cs
- TextPatternIdentifiers.cs
- DoubleStorage.cs
- DataGridViewSortCompareEventArgs.cs
- PrintDialog.cs
- CacheDependency.cs
- _DomainName.cs
- NullableFloatSumAggregationOperator.cs
- Queue.cs
- TdsParserSessionPool.cs
- FontUnitConverter.cs
- Thumb.cs
- PersonalizablePropertyEntry.cs
- MergablePropertyAttribute.cs
- SessionStateUtil.cs
- XmlBoundElement.cs
- Point3DCollection.cs
- DefaultProxySection.cs
- TraceXPathNavigator.cs
- ColumnMapVisitor.cs
- QuaternionIndependentAnimationStorage.cs
- ParserOptions.cs
- CodeChecksumPragma.cs
- CheckBoxRenderer.cs
- MultiDataTrigger.cs
- FillErrorEventArgs.cs
- DescendentsWalker.cs
- GeneratedCodeAttribute.cs
- CodeBlockBuilder.cs
- ConvertEvent.cs
- Pair.cs
- WorkflowRuntimeServicesBehavior.cs
- RequestResizeEvent.cs
- StrokeCollection.cs
- FixedDSBuilder.cs
- RegionIterator.cs
- ReadWriteObjectLock.cs
- TypeBuilderInstantiation.cs
- ParallelTimeline.cs
- HwndAppCommandInputProvider.cs
- FormViewDeleteEventArgs.cs
- TableLayoutCellPaintEventArgs.cs
- XmlSchemaComplexContentExtension.cs
- ProtectedConfigurationSection.cs
- ByteFacetDescriptionElement.cs
- ListBindingHelper.cs
- Mapping.cs
- FilteredDataSetHelper.cs
- XmlSerializableReader.cs
- ProxyManager.cs
- ButtonChrome.cs
- MatrixAnimationUsingPath.cs
- TextRangeSerialization.cs
- RenamedEventArgs.cs
- DeflateEmulationStream.cs