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
- GenericsInstances.cs
- DataGridRowDetailsEventArgs.cs
- XPathParser.cs
- DataServiceQueryProvider.cs
- XmlAttributeAttribute.cs
- LinearGradientBrush.cs
- NamespaceExpr.cs
- UnitySerializationHolder.cs
- CatalogZoneBase.cs
- DBBindings.cs
- ServiceOperationParameter.cs
- CrossAppDomainChannel.cs
- OdbcCommandBuilder.cs
- InvokeProviderWrapper.cs
- SoapReflector.cs
- IsolatedStoragePermission.cs
- RotateTransform3D.cs
- WindowsRichEdit.cs
- LastQueryOperator.cs
- PointLightBase.cs
- RawMouseInputReport.cs
- GPPOINT.cs
- UserPreferenceChangedEventArgs.cs
- DataRelation.cs
- StorageSetMapping.cs
- DocumentSequenceHighlightLayer.cs
- BindableTemplateBuilder.cs
- InterleavedZipPartStream.cs
- BulletDecorator.cs
- XmlElementList.cs
- FilterableAttribute.cs
- InfoCardArgumentException.cs
- SocketInformation.cs
- ToolStripScrollButton.cs
- DataGridViewCellStyleConverter.cs
- DesignerInterfaces.cs
- InfoCardRSAPKCS1KeyExchangeDeformatter.cs
- PackageDigitalSignatureManager.cs
- UITypeEditors.cs
- ListViewAutomationPeer.cs
- BuildProvidersCompiler.cs
- DBDataPermissionAttribute.cs
- ResourceSet.cs
- Wizard.cs
- DataExpression.cs
- columnmapkeybuilder.cs
- ImageButton.cs
- ZoneLinkButton.cs
- FormatConvertedBitmap.cs
- FixedTextSelectionProcessor.cs
- APCustomTypeDescriptor.cs
- Application.cs
- SharedStatics.cs
- BatchStream.cs
- ObsoleteAttribute.cs
- CellTreeSimplifier.cs
- TreeViewImageIndexConverter.cs
- EventSinkActivityDesigner.cs
- ExternalCalls.cs
- DescendantQuery.cs
- RelatedPropertyManager.cs
- ContentElement.cs
- MethodBuilderInstantiation.cs
- Point.cs
- ProjectionCamera.cs
- VisualCollection.cs
- HashCodeCombiner.cs
- QueryReaderSettings.cs
- SettingsPropertyValue.cs
- SqlAggregateChecker.cs
- StringToken.cs
- FrameworkContentElement.cs
- WorkflowMessageEventArgs.cs
- Vector.cs
- ClientRolePrincipal.cs
- OleDbDataReader.cs
- StopStoryboard.cs
- ExpressionBuilderContext.cs
- NGCUIElementCollectionSerializerAsync.cs
- WpfPayload.cs
- CqlParser.cs
- CultureInfoConverter.cs
- SmtpMail.cs
- DataColumn.cs
- SqlUnionizer.cs
- InstanceDescriptor.cs
- TitleStyle.cs
- BackStopAuthenticationModule.cs
- Collection.cs
- HttpResponseInternalWrapper.cs
- translator.cs
- OleDbTransaction.cs
- XamlSerializerUtil.cs
- hresults.cs
- CorePropertiesFilter.cs
- __Filters.cs
- RegisterInfo.cs
- HashCryptoHandle.cs
- LogicalTreeHelper.cs
- WindowsGraphics.cs