You've already forked linux-packaging-mono
Imported Upstream version 4.0.0~alpha1
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
This commit is contained in:
78
external/referencesource/System.Web/Configuration/BufferModesCollection.cs
vendored
Normal file
78
external/referencesource/System.Web/Configuration/BufferModesCollection.cs
vendored
Normal file
@ -0,0 +1,78 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <copyright file="BufferModesCollection.cs" company="Microsoft">
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// </copyright>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
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))]
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user