Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Net / System / Net / Configuration / BypassElementCollection.cs / 1305376 / BypassElementCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net.Configuration { using System; using System.Configuration; using System.Security.Permissions; [ConfigurationCollection(typeof(BypassElement))] public sealed class BypassElementCollection : ConfigurationElementCollection { public BypassElementCollection() { } public BypassElement this[int index] { get { return (BypassElement)BaseGet(index); } set { if (BaseGet(index) != null) { BaseRemoveAt(index); } BaseAdd(index,value); } } public new BypassElement this[string name] { get { return (BypassElement)BaseGet(name); } set { if (BaseGet(name) != null) { BaseRemove(name); } BaseAdd(value); } } public void Add(BypassElement element) { BaseAdd(element); } public void Clear() { BaseClear(); } protected override ConfigurationElement CreateNewElement() { return new BypassElement(); } protected override Object GetElementKey(ConfigurationElement element) { if (element == null) throw new ArgumentNullException("element"); return ((BypassElement)element).Key; } public int IndexOf(BypassElement element) { return BaseIndexOf(element); } public void Remove(BypassElement element) { if (element == null) throw new ArgumentNullException("element"); BaseRemove(element.Key); } public void Remove(string name) { BaseRemove(name); } public void RemoveAt(int index) { BaseRemoveAt(index); } // Since, ByPassElementCollection is a simple list with add/remove functionality, // we now never throw on duplicate entries just for this collection. This also // allows to keep Everett compatibility. // protected override bool ThrowOnDuplicate { get { return false; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net.Configuration { using System; using System.Configuration; using System.Security.Permissions; [ConfigurationCollection(typeof(BypassElement))] public sealed class BypassElementCollection : ConfigurationElementCollection { public BypassElementCollection() { } public BypassElement this[int index] { get { return (BypassElement)BaseGet(index); } set { if (BaseGet(index) != null) { BaseRemoveAt(index); } BaseAdd(index,value); } } public new BypassElement this[string name] { get { return (BypassElement)BaseGet(name); } set { if (BaseGet(name) != null) { BaseRemove(name); } BaseAdd(value); } } public void Add(BypassElement element) { BaseAdd(element); } public void Clear() { BaseClear(); } protected override ConfigurationElement CreateNewElement() { return new BypassElement(); } protected override Object GetElementKey(ConfigurationElement element) { if (element == null) throw new ArgumentNullException("element"); return ((BypassElement)element).Key; } public int IndexOf(BypassElement element) { return BaseIndexOf(element); } public void Remove(BypassElement element) { if (element == null) throw new ArgumentNullException("element"); BaseRemove(element.Key); } public void Remove(string name) { BaseRemove(name); } public void RemoveAt(int index) { BaseRemoveAt(index); } // Since, ByPassElementCollection is a simple list with add/remove functionality, // we now never throw on duplicate entries just for this collection. This also // allows to keep Everett compatibility. // protected override bool ThrowOnDuplicate { get { return false; } } } } // 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
- SqlBulkCopyColumnMapping.cs
- NativeWindow.cs
- HttpCookieCollection.cs
- HostSecurityManager.cs
- Utils.cs
- XmlAnyAttributeAttribute.cs
- EdgeProfileValidation.cs
- Literal.cs
- AnimatedTypeHelpers.cs
- PTManager.cs
- ToolStripSplitButton.cs
- InputLanguage.cs
- XsdBuildProvider.cs
- Int16AnimationUsingKeyFrames.cs
- HttpCookiesSection.cs
- SafeViewOfFileHandle.cs
- ClientBuildManager.cs
- BufferedStream.cs
- SerializationException.cs
- DataGridView.cs
- DataGridViewCellStyleChangedEventArgs.cs
- UserNameSecurityToken.cs
- XmlNodeList.cs
- Operators.cs
- SignatureConfirmationElement.cs
- EventTrigger.cs
- XslNumber.cs
- PortCache.cs
- TransactionFilter.cs
- MembershipValidatePasswordEventArgs.cs
- LinqDataSourceDeleteEventArgs.cs
- AmbientValueAttribute.cs
- X509Certificate2Collection.cs
- SoapFault.cs
- DataSourceGroupCollection.cs
- Variant.cs
- FigureParagraph.cs
- GeometryValueSerializer.cs
- DocumentSchemaValidator.cs
- XDRSchema.cs
- SslStream.cs
- SystemFonts.cs
- ExpressionHelper.cs
- SqlException.cs
- PersonalizationProvider.cs
- DispatcherExceptionFilterEventArgs.cs
- TypeResolver.cs
- ThreadLocal.cs
- Utils.cs
- MatrixKeyFrameCollection.cs
- Page.cs
- ClipboardData.cs
- DataGridViewButtonCell.cs
- BitSet.cs
- ISAPIRuntime.cs
- StateDesigner.TransitionInfo.cs
- serverconfig.cs
- FixedTextPointer.cs
- AnnotationAuthorChangedEventArgs.cs
- ObsoleteAttribute.cs
- EditorAttribute.cs
- SchemaDeclBase.cs
- SignedXml.cs
- OrderPreservingPipeliningMergeHelper.cs
- TimeEnumHelper.cs
- TextSelectionProcessor.cs
- DeleteBookmarkScope.cs
- Conditional.cs
- FactoryGenerator.cs
- Identity.cs
- odbcmetadatacolumnnames.cs
- SqlPersonalizationProvider.cs
- MenuItemBindingCollection.cs
- XmlDownloadManager.cs
- DocumentPageViewAutomationPeer.cs
- OdbcFactory.cs
- PersonalizationDictionary.cs
- UniqueID.cs
- DataGrid.cs
- Shape.cs
- DropDownButton.cs
- TickBar.cs
- FileDialog.cs
- MemberMaps.cs
- SRGSCompiler.cs
- ClientOptions.cs
- ImageIndexConverter.cs
- CreateUserWizardStep.cs
- LiteralTextContainerControlBuilder.cs
- BooleanExpr.cs
- NotifyIcon.cs
- URI.cs
- XhtmlConformanceSection.cs
- DiscoveryEndpointElement.cs
- PropertyGeneratedEventArgs.cs
- HttpListenerRequestUriBuilder.cs
- MenuStrip.cs
- QilStrConcat.cs
- DocumentApplication.cs
- ObjectPersistData.cs