Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / Configuration / BufferModesCollection.cs / 2 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BitmapInitialize.cs
- BasicHttpSecurityMode.cs
- Section.cs
- HttpResponseHeader.cs
- XmlSchemaComplexContent.cs
- CompModSwitches.cs
- BaseDataList.cs
- Message.cs
- QilGeneratorEnv.cs
- AppDomainUnloadedException.cs
- TextTreeTextNode.cs
- CompoundFileDeflateTransform.cs
- SystemIPGlobalStatistics.cs
- CodeMethodInvokeExpression.cs
- AuthenticatedStream.cs
- AssemblyContextControlItem.cs
- DataExchangeServiceBinder.cs
- MediaContext.cs
- DrawingAttributeSerializer.cs
- HtmlPageAdapter.cs
- WinFormsSpinner.cs
- Button.cs
- _SingleItemRequestCache.cs
- ResourcePermissionBase.cs
- PropertyToken.cs
- ToolTip.cs
- SqlTopReducer.cs
- BridgeDataReader.cs
- InkCanvasSelectionAdorner.cs
- Main.cs
- FakeModelPropertyImpl.cs
- TypeBrowserDialog.cs
- PEFileEvidenceFactory.cs
- AmbiguousMatchException.cs
- TextReader.cs
- ControlCollection.cs
- VersionedStreamOwner.cs
- HelpProvider.cs
- Menu.cs
- SystemDropShadowChrome.cs
- WhitespaceRuleLookup.cs
- GeneralTransform.cs
- HtmlDocument.cs
- CodeDirectiveCollection.cs
- DateTimeConverter2.cs
- RenameRuleObjectDialog.Designer.cs
- COM2IPerPropertyBrowsingHandler.cs
- NumericExpr.cs
- CodeMemberEvent.cs
- Stream.cs
- TraceInternal.cs
- sqlstateclientmanager.cs
- mongolianshape.cs
- DataGridTemplateColumn.cs
- WebBrowserProgressChangedEventHandler.cs
- CompilationSection.cs
- LinkedResource.cs
- URLBuilder.cs
- EntityParameter.cs
- SecurityTokenRequirement.cs
- ValidationUtility.cs
- ConnectionManagementElementCollection.cs
- SymbolEqualComparer.cs
- ObjectNotFoundException.cs
- FontResourceCache.cs
- MasterPageCodeDomTreeGenerator.cs
- ColumnMapProcessor.cs
- XmlSchemaSubstitutionGroup.cs
- Operator.cs
- SmiEventStream.cs
- Gdiplus.cs
- EntityDataSourceMemberPath.cs
- Transactions.cs
- BypassElement.cs
- SessionStateModule.cs
- SQLBoolean.cs
- CheckBox.cs
- BaseDataBoundControl.cs
- DesignerFrame.cs
- CaretElement.cs
- SchemaConstraints.cs
- IOException.cs
- SecurityAppliedMessage.cs
- SettingsPropertyValue.cs
- SettingsAttributes.cs
- ComplexTypeEmitter.cs
- Matrix.cs
- RSACryptoServiceProvider.cs
- SafeNativeMethods.cs
- SessionEndingCancelEventArgs.cs
- ACL.cs
- ReadOnlyActivityGlyph.cs
- TransactionContext.cs
- DataGridViewCell.cs
- XmlComplianceUtil.cs
- ValueUnavailableException.cs
- DetailsViewInsertedEventArgs.cs
- FixedTextBuilder.cs
- Wizard.cs
- RadioButtonList.cs