Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- HostVisual.cs
- isolationinterop.cs
- ButtonColumn.cs
- Token.cs
- XmlSchemaValidator.cs
- DataGridCellInfo.cs
- ExternalCalls.cs
- ObjectStateEntryOriginalDbUpdatableDataRecord.cs
- X509Logo.cs
- DesigntimeLicenseContext.cs
- DataGridViewCellStyleEditor.cs
- CriticalHandle.cs
- OperatorExpressions.cs
- InkCollectionBehavior.cs
- Context.cs
- DefaultCompensation.cs
- BinaryKeyIdentifierClause.cs
- SystemPens.cs
- DynamicContractTypeBuilder.cs
- XmlDocumentSurrogate.cs
- COAUTHINFO.cs
- ViewGenResults.cs
- ScriptServiceAttribute.cs
- XmlSchemas.cs
- TableLayoutRowStyleCollection.cs
- TripleDESCryptoServiceProvider.cs
- FixedTextPointer.cs
- SrgsItemList.cs
- ArglessEventHandlerProxy.cs
- EnumConverter.cs
- TextRangeEditLists.cs
- SQLGuidStorage.cs
- DynamicPropertyHolder.cs
- TraceSection.cs
- AssertSection.cs
- UrlEncodedParameterWriter.cs
- XmlSchemaComplexContent.cs
- Menu.cs
- StylusCollection.cs
- EventHandlers.cs
- TypeUtil.cs
- WebPartConnectionCollection.cs
- FormatException.cs
- PartialTrustValidationBehavior.cs
- CodeTypeConstructor.cs
- CellParagraph.cs
- GenericUriParser.cs
- LayoutDump.cs
- EntityDataSource.cs
- DrawingContext.cs
- NumericUpDownAccelerationCollection.cs
- InlineCollection.cs
- DataControlCommands.cs
- VirtualizingStackPanel.cs
- DropShadowBitmapEffect.cs
- WebControlsSection.cs
- AppSettingsExpressionBuilder.cs
- QilIterator.cs
- DocumentProperties.cs
- MemoryFailPoint.cs
- DataServiceClientException.cs
- SystemIcons.cs
- InkCanvasInnerCanvas.cs
- FieldAccessException.cs
- BitArray.cs
- MarkupObject.cs
- Parallel.cs
- DataGridViewColumnEventArgs.cs
- WindowsGraphics.cs
- IDispatchConstantAttribute.cs
- CodeCompiler.cs
- ResourceExpression.cs
- Cursors.cs
- XmlWriter.cs
- IndicCharClassifier.cs
- RouteParametersHelper.cs
- RegionData.cs
- SplineKeyFrames.cs
- RenderContext.cs
- MSAAEventDispatcher.cs
- FormsAuthenticationUserCollection.cs
- RemoteTokenFactory.cs
- _AutoWebProxyScriptEngine.cs
- File.cs
- SizeAnimationClockResource.cs
- DeploymentSectionCache.cs
- ReversePositionQuery.cs
- RawContentTypeMapper.cs
- ComplusTypeValidator.cs
- Variable.cs
- ToolStripItemClickedEventArgs.cs
- ListBoxItemAutomationPeer.cs
- KeyGesture.cs
- _BufferOffsetSize.cs
- SmtpFailedRecipientsException.cs
- EditorPartChrome.cs
- DataServicePagingProviderWrapper.cs
- XPathException.cs
- DbConnectionPoolOptions.cs
- KnownBoxes.cs