Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / Configuration / BufferModesCollection.cs / 5 / 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
- EqualityComparer.cs
- FixedSOMLineCollection.cs
- SignatureHelper.cs
- TextBox.cs
- SchemaContext.cs
- ManagedIStream.cs
- LayoutEvent.cs
- NamedPermissionSet.cs
- XsdBuilder.cs
- ReaderContextStackData.cs
- XslCompiledTransform.cs
- DocumentsTrace.cs
- ObfuscationAttribute.cs
- PageEventArgs.cs
- WebScriptMetadataFormatter.cs
- InternalBufferOverflowException.cs
- wmiprovider.cs
- DataPager.cs
- LogWriteRestartAreaAsyncResult.cs
- PathBox.cs
- ContractSearchPattern.cs
- HashRepartitionStream.cs
- TableParagraph.cs
- ExtentKey.cs
- ColorMatrix.cs
- ImageButton.cs
- CodeMethodReturnStatement.cs
- Int16.cs
- SerializationInfo.cs
- RawKeyboardInputReport.cs
- ReadOnlyHierarchicalDataSourceView.cs
- MasterPageBuildProvider.cs
- SqlDependency.cs
- ProjectionNode.cs
- ForEachAction.cs
- SqlDependencyListener.cs
- GradientBrush.cs
- Triangle.cs
- XmlNodeList.cs
- ContentElement.cs
- DataSourceHelper.cs
- XmlEntityReference.cs
- OpCopier.cs
- ComponentSerializationService.cs
- PrivateUnsafeNativeCompoundFileMethods.cs
- URL.cs
- DictionaryEntry.cs
- StrokeNode.cs
- AssertSection.cs
- PageParserFilter.cs
- Deserializer.cs
- DesignerAutoFormatStyle.cs
- ColumnWidthChangingEvent.cs
- VectorValueSerializer.cs
- BaseCollection.cs
- CommonProperties.cs
- ToolBarTray.cs
- MeasureItemEvent.cs
- MessageBox.cs
- ProcessInputEventArgs.cs
- DynamicDocumentPaginator.cs
- CurrentChangingEventManager.cs
- Material.cs
- DataServiceKeyAttribute.cs
- RequestCachePolicy.cs
- GridViewDeletedEventArgs.cs
- DataSetMappper.cs
- AppliedDeviceFiltersDialog.cs
- AudioLevelUpdatedEventArgs.cs
- _SslSessionsCache.cs
- TransactionTraceIdentifier.cs
- Encoder.cs
- printdlgexmarshaler.cs
- SafeUserTokenHandle.cs
- PropertyEmitterBase.cs
- EntityDataSourceWrapper.cs
- ThreadAttributes.cs
- DesignerToolboxInfo.cs
- UrlAuthFailedErrorFormatter.cs
- DependencyPropertyHelper.cs
- ContainerControl.cs
- ApplicationContext.cs
- TextOnlyOutput.cs
- DataChangedEventManager.cs
- WebConvert.cs
- TextEditorCopyPaste.cs
- ImageSourceConverter.cs
- HttpHeaderCollection.cs
- DataGridViewRowHeightInfoNeededEventArgs.cs
- MimeMapping.cs
- XamlWrappingReader.cs
- CodeDomLoader.cs
- CompileXomlTask.cs
- CodeObjectCreateExpression.cs
- StrongNameMembershipCondition.cs
- RawKeyboardInputReport.cs
- BinaryObjectReader.cs
- PersonalizationProviderHelper.cs
- TextLineResult.cs
- ThaiBuddhistCalendar.cs