Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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; } } } } // 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
- webbrowsersite.cs
- ByteAnimationUsingKeyFrames.cs
- SafeViewOfFileHandle.cs
- DataSpaceManager.cs
- LinqDataSourceValidationException.cs
- BooleanAnimationBase.cs
- XmlDomTextWriter.cs
- WebPageTraceListener.cs
- CodeSubDirectory.cs
- ArraySubsetEnumerator.cs
- WebContext.cs
- HttpWebRequestElement.cs
- TimelineClockCollection.cs
- PathFigureCollection.cs
- SqlNode.cs
- DataObjectAttribute.cs
- RelationshipConstraintValidator.cs
- CellParagraph.cs
- FontStretch.cs
- ImageSource.cs
- TextEndOfSegment.cs
- FontFaceLayoutInfo.cs
- XmlAtomicValue.cs
- AnnotationObservableCollection.cs
- PermissionAttributes.cs
- Stackframe.cs
- StoryFragments.cs
- xml.cs
- PerSessionInstanceContextProvider.cs
- SymmetricAlgorithm.cs
- WCFModelStrings.Designer.cs
- OutputWindow.cs
- NetPipeSection.cs
- WmpBitmapDecoder.cs
- VarRemapper.cs
- HeaderedItemsControl.cs
- PackageStore.cs
- _LocalDataStore.cs
- FlatButtonAppearance.cs
- PointLight.cs
- CmsInterop.cs
- Encoder.cs
- XmlWhitespace.cs
- WsatServiceAddress.cs
- CheckBoxDesigner.cs
- QueryableDataSourceEditData.cs
- CapabilitiesRule.cs
- PathGeometry.cs
- MessageSecurityProtocolFactory.cs
- DataGridViewButtonCell.cs
- EntityTypeEmitter.cs
- ContainerFilterService.cs
- BamlLocalizer.cs
- OleDbInfoMessageEvent.cs
- ExtenderControl.cs
- wgx_commands.cs
- VerificationAttribute.cs
- MultiDataTrigger.cs
- PropertyTabAttribute.cs
- RouteItem.cs
- NameValueSectionHandler.cs
- RoleService.cs
- QueryContinueDragEvent.cs
- SymbolType.cs
- Panel.cs
- KeyValueSerializer.cs
- DelimitedListTraceListener.cs
- FlagsAttribute.cs
- SemanticResultKey.cs
- ListParagraph.cs
- DaylightTime.cs
- RoutedEvent.cs
- Control.cs
- Matrix3D.cs
- ProfileProvider.cs
- OutputWindow.cs
- ToolStripPanelRenderEventArgs.cs
- GraphicsState.cs
- CodeMemberField.cs
- ControlBuilder.cs
- Action.cs
- SafeFileMapViewHandle.cs
- ClientTargetCollection.cs
- ConfigXmlWhitespace.cs
- RewritingProcessor.cs
- WebPartConnectVerb.cs
- LogAppendAsyncResult.cs
- TrackingDataItemValue.cs
- StateChangeEvent.cs
- PartitionerQueryOperator.cs
- SqlWorkflowPersistenceService.cs
- Command.cs
- _FixedSizeReader.cs
- MessageAction.cs
- ControlCollection.cs
- Application.cs
- ClrProviderManifest.cs
- GuidTagList.cs
- DrawingContextDrawingContextWalker.cs
- RightsManagementEncryptionTransform.cs