Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / EventMappingSettingsCollection.cs / 1305376 / EventMappingSettingsCollection.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(EventMappingSettings))]
public sealed class EventMappingSettingsCollection : ConfigurationElementCollection {
private static ConfigurationPropertyCollection _properties;
static EventMappingSettingsCollection() {
// Property initialization
_properties = new ConfigurationPropertyCollection();
}
protected override ConfigurationPropertyCollection Properties {
get {
return _properties;
}
}
public EventMappingSettingsCollection() {
}
public new EventMappingSettings this[string key] {
get {
return (EventMappingSettings)BaseGet(key);
}
}
// public properties
public EventMappingSettings this[int index] {
get {
return (EventMappingSettings)BaseGet(index);
}
set {
if (BaseGet(index) != null)
BaseRemoveAt(index);
BaseAdd(index, value);
}
}
// Protected Overrides
protected override ConfigurationElement CreateNewElement() {
return new EventMappingSettings();
}
protected override Object GetElementKey(ConfigurationElement element) {
return ((EventMappingSettings)element).Name;
}
// public methods
public void Add(EventMappingSettings eventMappingSettings) {
BaseAdd(eventMappingSettings); // add to the end of the list and dont overwrite dups!
}
public void Clear() {
BaseClear();
}
public void RemoveAt(int index) {
BaseRemoveAt(index);
}
public void Insert(int index, EventMappingSettings eventMappingSettings) {
BaseAdd(index, eventMappingSettings);
}
public int IndexOf(String name) {
ConfigurationElement element = BaseGet((Object)name);
return (element != null) ? BaseIndexOf(element) : -1;
}
public void Remove(String name) {
BaseRemove(name);
}
public bool Contains(String name) {
return (IndexOf(name) != -1);
}
}
}
// 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(EventMappingSettings))]
public sealed class EventMappingSettingsCollection : ConfigurationElementCollection {
private static ConfigurationPropertyCollection _properties;
static EventMappingSettingsCollection() {
// Property initialization
_properties = new ConfigurationPropertyCollection();
}
protected override ConfigurationPropertyCollection Properties {
get {
return _properties;
}
}
public EventMappingSettingsCollection() {
}
public new EventMappingSettings this[string key] {
get {
return (EventMappingSettings)BaseGet(key);
}
}
// public properties
public EventMappingSettings this[int index] {
get {
return (EventMappingSettings)BaseGet(index);
}
set {
if (BaseGet(index) != null)
BaseRemoveAt(index);
BaseAdd(index, value);
}
}
// Protected Overrides
protected override ConfigurationElement CreateNewElement() {
return new EventMappingSettings();
}
protected override Object GetElementKey(ConfigurationElement element) {
return ((EventMappingSettings)element).Name;
}
// public methods
public void Add(EventMappingSettings eventMappingSettings) {
BaseAdd(eventMappingSettings); // add to the end of the list and dont overwrite dups!
}
public void Clear() {
BaseClear();
}
public void RemoveAt(int index) {
BaseRemoveAt(index);
}
public void Insert(int index, EventMappingSettings eventMappingSettings) {
BaseAdd(index, eventMappingSettings);
}
public int IndexOf(String name) {
ConfigurationElement element = BaseGet((Object)name);
return (element != null) ? BaseIndexOf(element) : -1;
}
public void Remove(String name) {
BaseRemove(name);
}
public bool Contains(String name) {
return (IndexOf(name) != -1);
}
}
}
// 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
- XmlNodeList.cs
- Splitter.cs
- XamlFilter.cs
- EmptyElement.cs
- BinHexEncoder.cs
- PropertyChange.cs
- Package.cs
- WebPartsPersonalizationAuthorization.cs
- CodeFieldReferenceExpression.cs
- SqlBuilder.cs
- Substitution.cs
- sortedlist.cs
- IPPacketInformation.cs
- DataRelation.cs
- Line.cs
- SqlDataSourceDesigner.cs
- SystemDiagnosticsSection.cs
- MetadataItemSerializer.cs
- FixedHighlight.cs
- LabelDesigner.cs
- HMACSHA256.cs
- PolicyStatement.cs
- JsonReader.cs
- ISCIIEncoding.cs
- IssuedTokensHeader.cs
- EmissiveMaterial.cs
- _IPv6Address.cs
- InvalidPropValue.cs
- recordstatefactory.cs
- EmbeddedMailObject.cs
- OrderedDictionary.cs
- PageThemeCodeDomTreeGenerator.cs
- StylusPointPropertyUnit.cs
- SiteOfOriginContainer.cs
- TextPattern.cs
- DictionaryEntry.cs
- COM2ComponentEditor.cs
- XmlSchemaObjectCollection.cs
- OleDbConnectionInternal.cs
- SymmetricKey.cs
- CompiledXpathExpr.cs
- CodeVariableDeclarationStatement.cs
- GeneralTransform3DTo2D.cs
- XsltException.cs
- BindingListCollectionView.cs
- EffectiveValueEntry.cs
- TypeInitializationException.cs
- X500Name.cs
- FrameworkRichTextComposition.cs
- ElementNotAvailableException.cs
- GradientBrush.cs
- EpmSyndicationContentSerializer.cs
- ScrollItemProviderWrapper.cs
- FormViewUpdateEventArgs.cs
- DoubleAnimation.cs
- TableRowGroup.cs
- NonParentingControl.cs
- XmlSchemaGroupRef.cs
- RectAnimationUsingKeyFrames.cs
- Section.cs
- FileDetails.cs
- TaskExtensions.cs
- StylusEditingBehavior.cs
- DataObject.cs
- ApplySecurityAndSendAsyncResult.cs
- AsymmetricSecurityBindingElement.cs
- ComponentFactoryHelpers.cs
- SpeechSynthesizer.cs
- TypefaceMap.cs
- URLAttribute.cs
- ActiveXSite.cs
- IListConverters.cs
- TextSegment.cs
- DataSourceControl.cs
- FileLoadException.cs
- COM2FontConverter.cs
- PartialCachingControl.cs
- ArrangedElement.cs
- Queue.cs
- ChameleonKey.cs
- DesignTimeHTMLTextWriter.cs
- ProviderUtil.cs
- SQLDoubleStorage.cs
- WindowsGraphicsCacheManager.cs
- MergeLocalizationDirectives.cs
- WeakHashtable.cs
- GenericUriParser.cs
- TrackBar.cs
- NavigationProperty.cs
- BuildManager.cs
- ClientRuntimeConfig.cs
- SystemColors.cs
- RefreshPropertiesAttribute.cs
- SqlParameter.cs
- SqlEnums.cs
- SettingsContext.cs
- FirewallWrapper.cs
- Point4D.cs
- RowUpdatedEventArgs.cs
- StreamAsIStream.cs