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
- baseaxisquery.cs
- CodeChecksumPragma.cs
- DataRowComparer.cs
- ResourceReader.cs
- ColorKeyFrameCollection.cs
- TaskFileService.cs
- ToolBarPanel.cs
- MarkupCompilePass1.cs
- FilterException.cs
- PixelFormat.cs
- TextElement.cs
- AsyncResult.cs
- ListViewItem.cs
- WindowsToolbar.cs
- Int32AnimationUsingKeyFrames.cs
- DesignUtil.cs
- Int16AnimationBase.cs
- IconBitmapDecoder.cs
- Descriptor.cs
- InputMethodStateTypeInfo.cs
- SystemIcons.cs
- Scanner.cs
- CodeStatement.cs
- HtmlElementEventArgs.cs
- HelpKeywordAttribute.cs
- CompilerGlobalScopeAttribute.cs
- TextBreakpoint.cs
- ProcessStartInfo.cs
- SamlDoNotCacheCondition.cs
- ToolStripItemRenderEventArgs.cs
- ParserExtension.cs
- SchemaImporter.cs
- hwndwrapper.cs
- ChtmlFormAdapter.cs
- DigitalSignatureProvider.cs
- WebPartConnectionsConnectVerb.cs
- ExpandCollapsePattern.cs
- X509SecurityTokenProvider.cs
- XmlSchema.cs
- WorkflowQueueInfo.cs
- DataFieldConverter.cs
- SimpleTextLine.cs
- CqlLexer.cs
- RenderingEventArgs.cs
- UTF32Encoding.cs
- WsdlInspector.cs
- ApplicationSettingsBase.cs
- XmlSignatureManifest.cs
- FlatButtonAppearance.cs
- UIElement3DAutomationPeer.cs
- PeerToPeerException.cs
- PageStatePersister.cs
- SynchronousChannel.cs
- Symbol.cs
- DataPagerFieldCommandEventArgs.cs
- WorkflowCreationContext.cs
- BoolExpr.cs
- StatusStrip.cs
- HttpAsyncResult.cs
- SocketPermission.cs
- Int32KeyFrameCollection.cs
- ContentType.cs
- IgnoreSectionHandler.cs
- InputLangChangeRequestEvent.cs
- InputChannel.cs
- SqlDataSourceConfigureSelectPanel.cs
- FloaterBaseParaClient.cs
- CommentEmitter.cs
- Int32CAMarshaler.cs
- IPeerNeighbor.cs
- DBCommand.cs
- ToolStrip.cs
- MatrixUtil.cs
- RuleSetDialog.Designer.cs
- Transform3DGroup.cs
- GridViewDeletedEventArgs.cs
- Selection.cs
- SQLByte.cs
- SerializationBinder.cs
- EntityContainerEmitter.cs
- SafeIUnknown.cs
- OleDbStruct.cs
- CodeLabeledStatement.cs
- SemanticResultKey.cs
- Helper.cs
- ObjectParameterCollection.cs
- OleDbConnectionPoolGroupProviderInfo.cs
- ReachSerializableProperties.cs
- SslStream.cs
- MobileSysDescriptionAttribute.cs
- Size.cs
- OptimalBreakSession.cs
- SuspendDesigner.cs
- Control.cs
- EdmSchemaAttribute.cs
- DBCSCodePageEncoding.cs
- XmlObjectSerializerWriteContextComplexJson.cs
- LogicalMethodInfo.cs
- TableItemProviderWrapper.cs
- ZipPackagePart.cs