Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / RuleSettingsCollection.cs / 1305376 / RuleSettingsCollection.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(RuleSettings))] public sealed class RuleSettingsCollection : ConfigurationElementCollection { private static ConfigurationPropertyCollection _properties; static RuleSettingsCollection() { // Property initialization _properties = new ConfigurationPropertyCollection(); } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } public RuleSettingsCollection() { } // public properties public RuleSettings this[int index] { get { return (RuleSettings)BaseGet(index); } set { if (BaseGet(index) != null) { BaseRemoveAt(index); } BaseAdd(index, value); } } public new RuleSettings this[string key] { get { return (RuleSettings)BaseGet(key); } } protected override ConfigurationElement CreateNewElement() { return new RuleSettings(); } protected override Object GetElementKey(ConfigurationElement element) { return ((RuleSettings)element).Name; } // public methods public void Add(RuleSettings ruleSettings) { BaseAdd(ruleSettings); // 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, RuleSettings eventSettings) { BaseAdd(index, eventSettings); } public void Remove(String name) { BaseRemove(name); } public int IndexOf(String name) { ConfigurationElement element = BaseGet((Object)name); return (element != null) ? BaseIndexOf(element) : -1; } 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
- SqlTransaction.cs
- HtmlInputSubmit.cs
- DelegatingChannelListener.cs
- HistoryEventArgs.cs
- DynamicMethod.cs
- CancelEventArgs.cs
- RawTextInputReport.cs
- OracleDataReader.cs
- SplineQuaternionKeyFrame.cs
- DataGridViewLayoutData.cs
- DiscoveryEndpoint.cs
- QilFunction.cs
- FileVersionInfo.cs
- DBDataPermissionAttribute.cs
- StyleSelector.cs
- precedingsibling.cs
- InternalConfigConfigurationFactory.cs
- BezierSegment.cs
- FileChangeNotifier.cs
- AppDomainUnloadedException.cs
- _NtlmClient.cs
- DotExpr.cs
- WindowsTab.cs
- SiteMapNodeCollection.cs
- OperandQuery.cs
- InitializerFacet.cs
- SmtpFailedRecipientsException.cs
- CharacterMetrics.cs
- DefaultDialogButtons.cs
- ToolStripArrowRenderEventArgs.cs
- SpellerInterop.cs
- GenericXmlSecurityToken.cs
- HostedNamedPipeTransportManager.cs
- EncryptedKeyHashIdentifierClause.cs
- FilteredDataSetHelper.cs
- basevalidator.cs
- AuthenticationServiceManager.cs
- ToolBarButtonClickEvent.cs
- HtmlTitle.cs
- PointCollectionConverter.cs
- XmlSchemaObjectTable.cs
- PrimitiveXmlSerializers.cs
- Group.cs
- WebHeaderCollection.cs
- PriorityQueue.cs
- SafeMILHandle.cs
- CrossAppDomainChannel.cs
- ScriptingSectionGroup.cs
- RuntimeDelegateArgument.cs
- AsyncResult.cs
- RubberbandSelector.cs
- DocumentsTrace.cs
- FormsAuthentication.cs
- MasterPageBuildProvider.cs
- HostedElements.cs
- DbConnectionFactory.cs
- UpdateCompiler.cs
- ModelUIElement3D.cs
- TextEndOfSegment.cs
- CodeIdentifiers.cs
- ResourceCategoryAttribute.cs
- TableSectionStyle.cs
- XmlSchemaSimpleType.cs
- RecognizerStateChangedEventArgs.cs
- DbProviderManifest.cs
- WorkflowApplicationAbortedException.cs
- EntitySetBaseCollection.cs
- SerializationObjectManager.cs
- BamlLocalizationDictionary.cs
- Types.cs
- UnsafeNativeMethods.cs
- UserControl.cs
- NotifyIcon.cs
- DynamicMethod.cs
- ScrollChangedEventArgs.cs
- DnsEndPoint.cs
- ContentWrapperAttribute.cs
- DbReferenceCollection.cs
- UIElementParaClient.cs
- Screen.cs
- TransactionsSectionGroup.cs
- DeviceContext.cs
- MasterPageParser.cs
- ObjectViewFactory.cs
- OdbcCommand.cs
- CollectionDataContractAttribute.cs
- DynamicFilter.cs
- InvalidPrinterException.cs
- PtsHost.cs
- ThrowHelper.cs
- SymbolUsageManager.cs
- DataSourceExpression.cs
- Win32Interop.cs
- SqlBuilder.cs
- LOSFormatter.cs
- AssociativeAggregationOperator.cs
- OperationAbortedException.cs
- ToolConsole.cs
- FileClassifier.cs
- IncrementalReadDecoders.cs