Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / Configuration / RuleSettingsCollection.cs / 1 / 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))] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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. //------------------------------------------------------------------------------ //// 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))] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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
- PropertyDescriptorGridEntry.cs
- DataSourceBooleanViewSchemaConverter.cs
- Misc.cs
- EventLogger.cs
- HTTPRemotingHandler.cs
- SchemaElementLookUpTableEnumerator.cs
- DataControlCommands.cs
- RemotingException.cs
- DSASignatureDeformatter.cs
- CompatibleComparer.cs
- ComplexBindingPropertiesAttribute.cs
- InputScopeConverter.cs
- DomainUpDown.cs
- UserControlParser.cs
- PingReply.cs
- FastEncoderWindow.cs
- SchemaImporterExtensionElement.cs
- TraceContextEventArgs.cs
- ConfigXmlSignificantWhitespace.cs
- UInt64Storage.cs
- SerializationBinder.cs
- ScriptRegistrationManager.cs
- MessageContractAttribute.cs
- FieldNameLookup.cs
- SafeRightsManagementSessionHandle.cs
- BackgroundWorker.cs
- StringSource.cs
- WrappingXamlSchemaContext.cs
- FileEnumerator.cs
- PartialCachingAttribute.cs
- QueueSurrogate.cs
- ButtonChrome.cs
- VsPropertyGrid.cs
- DataServiceRequestOfT.cs
- ProfileEventArgs.cs
- GroupBox.cs
- ThreadAttributes.cs
- ListItemConverter.cs
- UnhandledExceptionEventArgs.cs
- TransactionsSectionGroup.cs
- TimeoutException.cs
- SqlBuilder.cs
- DataRow.cs
- EventHandlersStore.cs
- CookieParameter.cs
- UrlPropertyAttribute.cs
- CorrelationValidator.cs
- SmtpClient.cs
- BindingSource.cs
- WebControl.cs
- StyleXamlParser.cs
- DataColumnCollection.cs
- TabControl.cs
- SimpleTypeResolver.cs
- MissingSatelliteAssemblyException.cs
- RequestCache.cs
- BinaryReader.cs
- Trace.cs
- GAC.cs
- AssemblyName.cs
- PenThreadWorker.cs
- ToolStripPanelCell.cs
- SerializationObjectManager.cs
- ServerValidateEventArgs.cs
- ResourcePermissionBase.cs
- HttpStreamMessage.cs
- StateMachineWorkflowInstance.cs
- StoreUtilities.cs
- ByteKeyFrameCollection.cs
- JavaScriptSerializer.cs
- CroppedBitmap.cs
- Int64AnimationUsingKeyFrames.cs
- MetaTableHelper.cs
- IndependentlyAnimatedPropertyMetadata.cs
- Parameter.cs
- MailHeaderInfo.cs
- ApplicationBuildProvider.cs
- ProgressBarBrushConverter.cs
- ToolStripRendererSwitcher.cs
- DivideByZeroException.cs
- OuterGlowBitmapEffect.cs
- ScopeCompiler.cs
- WebPartEditorCancelVerb.cs
- CmsInterop.cs
- PrintEvent.cs
- ScriptResourceInfo.cs
- latinshape.cs
- SqlErrorCollection.cs
- ReferentialConstraint.cs
- PreservationFileReader.cs
- SQLGuidStorage.cs
- EmbeddedMailObject.cs
- RolePrincipal.cs
- SetUserPreferenceRequest.cs
- CompositeFontInfo.cs
- CFStream.cs
- AutoFocusStyle.xaml.cs
- FactoryRecord.cs
- HashMembershipCondition.cs
- StorageTypeMapping.cs