Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- VirtualizingPanel.cs
- XPathNodeList.cs
- DataControlReference.cs
- AccessViolationException.cs
- ToolStripPanelCell.cs
- AlignmentYValidation.cs
- ValidationErrorEventArgs.cs
- WorkflowQueue.cs
- WinOEToolBoxItem.cs
- SafeNativeMethods.cs
- EntityContainerAssociationSet.cs
- IndexingContentUnit.cs
- PopupRootAutomationPeer.cs
- HasCopySemanticsAttribute.cs
- RelationshipConverter.cs
- IgnoreFlushAndCloseStream.cs
- ReadWriteSpinLock.cs
- CodePageUtils.cs
- Delay.cs
- Html32TextWriter.cs
- ResourceAssociationType.cs
- XPathNodeInfoAtom.cs
- UpDownBaseDesigner.cs
- PrtTicket_Base.cs
- Speller.cs
- MulticastIPAddressInformationCollection.cs
- WindowsListViewItemCheckBox.cs
- AccessDataSourceView.cs
- DataServiceBehavior.cs
- ClientTargetSection.cs
- StringKeyFrameCollection.cs
- MultipleViewPattern.cs
- JoinElimination.cs
- DataControlField.cs
- ToolBarButtonDesigner.cs
- BinaryObjectWriter.cs
- StrongNameMembershipCondition.cs
- ValueUtilsSmi.cs
- GacUtil.cs
- LabelLiteral.cs
- MarginCollapsingState.cs
- StorageEntitySetMapping.cs
- EventlogProvider.cs
- PeerNameResolver.cs
- SchemaTypeEmitter.cs
- TabPanel.cs
- XmlSchemaAppInfo.cs
- BitmapMetadataEnumerator.cs
- DefaultValueTypeConverter.cs
- StickyNote.cs
- SurrogateSelector.cs
- ViewGenerator.cs
- NegatedConstant.cs
- TypeDelegator.cs
- ChannelManager.cs
- BufferedStream.cs
- MonikerBuilder.cs
- SqlProvider.cs
- PolicyChain.cs
- securestring.cs
- SHA1CryptoServiceProvider.cs
- ClassData.cs
- TraceUtils.cs
- DataGridLinkButton.cs
- XamlFigureLengthSerializer.cs
- AsyncPostBackErrorEventArgs.cs
- OleDbPermission.cs
- WorkflowDataContext.cs
- SQLDecimal.cs
- MemberMaps.cs
- ManualResetEvent.cs
- Quaternion.cs
- XpsImageSerializationService.cs
- DiscoveryUtility.cs
- DefaultExpression.cs
- ColumnClickEvent.cs
- XmlEncoding.cs
- DeflateStream.cs
- OutputScopeManager.cs
- PagedDataSource.cs
- SiteOfOriginContainer.cs
- EdmProperty.cs
- ResourceKey.cs
- NameValueSectionHandler.cs
- DataGridLengthConverter.cs
- VariableBinder.cs
- XamlSerializerUtil.cs
- SmiContext.cs
- TextTreeTextNode.cs
- DocumentViewerBaseAutomationPeer.cs
- PropertyMapper.cs
- COM2ExtendedUITypeEditor.cs
- FileReservationCollection.cs
- Object.cs
- HashCodeCombiner.cs
- MailWebEventProvider.cs
- FrugalMap.cs
- WorkflowOperationBehavior.cs
- LogicalExpr.cs
- TreeNode.cs