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
- GeometryDrawing.cs
- ReturnEventArgs.cs
- SvcMapFile.cs
- ControlBuilderAttribute.cs
- DiffuseMaterial.cs
- SchemaTableColumn.cs
- CatalogZoneAutoFormat.cs
- Html32TextWriter.cs
- CompositeDataBoundControl.cs
- ColumnProvider.cs
- FixedElement.cs
- Propagator.Evaluator.cs
- OpenTypeCommon.cs
- CodeTypeParameter.cs
- SqlPersonalizationProvider.cs
- Misc.cs
- panel.cs
- SeekStoryboard.cs
- GridViewUpdateEventArgs.cs
- CodeTypeConstructor.cs
- SequenceNumber.cs
- TextMessageEncodingElement.cs
- CompilationPass2TaskInternal.cs
- SignatureGenerator.cs
- RemotingException.cs
- RegexCompilationInfo.cs
- MappingModelBuildProvider.cs
- XmlSchema.cs
- UpdateCommandGenerator.cs
- MetadataItem.cs
- VisualStyleElement.cs
- ColorTransformHelper.cs
- RadioButtonRenderer.cs
- IconConverter.cs
- WorkItem.cs
- Trace.cs
- ActiveDocumentEvent.cs
- WriterOutput.cs
- WebProxyScriptElement.cs
- CounterSetInstance.cs
- ObjectStateEntryDbDataRecord.cs
- IdentityNotMappedException.cs
- IndividualDeviceConfig.cs
- Encoder.cs
- ObjectIDGenerator.cs
- DebuggerAttributes.cs
- IsolatedStorage.cs
- DesignerForm.cs
- VirtualizedCellInfoCollection.cs
- WebPartTransformerCollection.cs
- TraceContextRecord.cs
- SplashScreen.cs
- CheckoutException.cs
- DataServices.cs
- MULTI_QI.cs
- entitydatasourceentitysetnameconverter.cs
- altserialization.cs
- WebEventTraceProvider.cs
- AttributedMetaModel.cs
- MailWriter.cs
- TextPattern.cs
- Mapping.cs
- DetailsViewPagerRow.cs
- BufferBuilder.cs
- XmlBinaryReader.cs
- WebHostedComPlusServiceHost.cs
- CodeCompiler.cs
- DoubleLink.cs
- RadioButtonStandardAdapter.cs
- GroupItem.cs
- EmptyEnumerator.cs
- DataSourceXmlSerializer.cs
- CompiledRegexRunnerFactory.cs
- ConfigurationFileMap.cs
- UIPermission.cs
- ColorTransform.cs
- ListBase.cs
- MetadataProperty.cs
- SmiTypedGetterSetter.cs
- SByteConverter.cs
- DirectionalLight.cs
- RequiredFieldValidator.cs
- DataGridParentRows.cs
- OdbcPermission.cs
- QueryConverter.cs
- _Events.cs
- Sorting.cs
- IisTraceWebEventProvider.cs
- CngAlgorithm.cs
- BinaryObjectInfo.cs
- XmlSignatureManifest.cs
- CallContext.cs
- PropertyValue.cs
- MaterialCollection.cs
- Encoder.cs
- BulletedList.cs
- TypeElement.cs
- AxisAngleRotation3D.cs
- ApplicationException.cs
- XmlObjectSerializerWriteContextComplex.cs