Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Net / System / Net / Configuration / BypassElementCollection.cs / 1 / 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; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- OpacityConverter.cs
- BamlMapTable.cs
- AsymmetricSignatureFormatter.cs
- SubMenuStyleCollection.cs
- LinqDataSourceInsertEventArgs.cs
- DataGridViewDataConnection.cs
- XmlSchemaSet.cs
- ButtonField.cs
- WebPartVerbsEventArgs.cs
- RuleSettingsCollection.cs
- RulePatternOps.cs
- IPCCacheManager.cs
- Substitution.cs
- ValidationHelpers.cs
- Model3DGroup.cs
- _NestedMultipleAsyncResult.cs
- EditorZoneBase.cs
- AnnouncementInnerClientCD1.cs
- FormViewDeletedEventArgs.cs
- SQLGuid.cs
- ArrayList.cs
- DescendentsWalker.cs
- CloseSequence.cs
- AtomMaterializer.cs
- SqlAliaser.cs
- CodeAttributeArgument.cs
- _ListenerAsyncResult.cs
- AudioFormatConverter.cs
- ForEachAction.cs
- SqlDataReaderSmi.cs
- Int32.cs
- SoapAttributes.cs
- SecurityPolicySection.cs
- ContainerSelectorBehavior.cs
- CssTextWriter.cs
- WsdlImporterElementCollection.cs
- HttpCookieCollection.cs
- DrawingGroupDrawingContext.cs
- BuildProvidersCompiler.cs
- TransformerTypeCollection.cs
- AuthenticationConfig.cs
- LocalizableAttribute.cs
- AdobeCFFWrapper.cs
- XmlAnyElementAttributes.cs
- WebPartsSection.cs
- BamlResourceDeserializer.cs
- TypeUtil.cs
- FullTextBreakpoint.cs
- MeasureItemEvent.cs
- SiteMap.cs
- CompModHelpers.cs
- HighContrastHelper.cs
- AssemblyHash.cs
- ExternalCalls.cs
- LexicalChunk.cs
- TypeBuilderInstantiation.cs
- HighlightComponent.cs
- GACIdentityPermission.cs
- APCustomTypeDescriptor.cs
- QilReplaceVisitor.cs
- FrugalList.cs
- TextBounds.cs
- WorkflowApplicationUnhandledExceptionEventArgs.cs
- GeneralTransform3DGroup.cs
- GraphicsPath.cs
- CompilationSection.cs
- HotSpotCollection.cs
- GridViewEditEventArgs.cs
- FormCollection.cs
- WindowsEditBoxRange.cs
- UncommonField.cs
- MetafileHeaderWmf.cs
- SafeEventLogWriteHandle.cs
- PrintPageEvent.cs
- LinqToSqlWrapper.cs
- FormsAuthenticationCredentials.cs
- NameValuePair.cs
- HorizontalAlignConverter.cs
- ActiveXSite.cs
- LoginName.cs
- XmlNullResolver.cs
- TagMapCollection.cs
- PrintingPermissionAttribute.cs
- TagPrefixAttribute.cs
- AstTree.cs
- NavigationWindow.cs
- ToolboxComponentsCreatedEventArgs.cs
- Transform3DGroup.cs
- ListViewCancelEventArgs.cs
- SymbolMethod.cs
- Vector3DIndependentAnimationStorage.cs
- PartitionedStreamMerger.cs
- MaterializeFromAtom.cs
- BuildResult.cs
- UIElement3DAutomationPeer.cs
- RegexWriter.cs
- ProfileEventArgs.cs
- LayoutEngine.cs
- CompiledQueryCacheKey.cs
- SizeChangedInfo.cs