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
- PathGeometry.cs
- BitmapMetadataBlob.cs
- EntityStoreSchemaFilterEntry.cs
- XPathScanner.cs
- CfgSemanticTag.cs
- CompilerCollection.cs
- HttpCapabilitiesEvaluator.cs
- CatalogPartChrome.cs
- ExtensionDataReader.cs
- ClientSettingsStore.cs
- BulletChrome.cs
- HiddenField.cs
- HostingEnvironmentSection.cs
- DetailsViewDesigner.cs
- FixedPage.cs
- ActivityBuilder.cs
- DataServiceQueryException.cs
- TdsRecordBufferSetter.cs
- WebControlsSection.cs
- GroupQuery.cs
- XmlElementCollection.cs
- WindowsFormsHostAutomationPeer.cs
- AttachedPropertyMethodSelector.cs
- StrongTypingException.cs
- SQLInt64.cs
- DataGridColumn.cs
- RoleManagerSection.cs
- ClosableStream.cs
- HtmlTable.cs
- RegisteredExpandoAttribute.cs
- XmlNavigatorStack.cs
- ProfileBuildProvider.cs
- DrawingCollection.cs
- MenuAutomationPeer.cs
- DataTableReaderListener.cs
- BStrWrapper.cs
- StrongNameIdentityPermission.cs
- DbConnectionStringCommon.cs
- AssertUtility.cs
- CharacterString.cs
- CacheOutputQuery.cs
- ReadWriteObjectLock.cs
- IPPacketInformation.cs
- TextEditorCopyPaste.cs
- TcpStreams.cs
- XmlSerializer.cs
- ResolveNextArgumentWorkItem.cs
- SafeThemeHandle.cs
- HyperLinkColumn.cs
- WhitespaceSignificantCollectionAttribute.cs
- TypeElement.cs
- ErrorFormatterPage.cs
- FieldBuilder.cs
- SymbolPair.cs
- ISAPIApplicationHost.cs
- DispatcherHookEventArgs.cs
- OdbcCommandBuilder.cs
- TextPattern.cs
- ButtonColumn.cs
- DATA_BLOB.cs
- CodeSnippetCompileUnit.cs
- MessagePartDescriptionCollection.cs
- ColumnClickEvent.cs
- ECDiffieHellman.cs
- ObjectListField.cs
- TraceContextEventArgs.cs
- GridViewSelectEventArgs.cs
- ListViewItemSelectionChangedEvent.cs
- SqlProfileProvider.cs
- BufferModeSettings.cs
- ComplexTypeEmitter.cs
- CheckBoxPopupAdapter.cs
- DtrList.cs
- Knowncolors.cs
- MarkedHighlightComponent.cs
- EmptyEnumerable.cs
- CodeVariableDeclarationStatement.cs
- XsdBuildProvider.cs
- HtmlTable.cs
- DataComponentGenerator.cs
- PartManifestEntry.cs
- AuthorizationRuleCollection.cs
- CategoryGridEntry.cs
- QueueProcessor.cs
- BaseInfoTable.cs
- BrowserCapabilitiesFactory.cs
- SynchronizingStream.cs
- TextCollapsingProperties.cs
- EditorPart.cs
- ToolBarTray.cs
- IteratorDescriptor.cs
- ReflectionUtil.cs
- SendDesigner.xaml.cs
- CommandSet.cs
- FormViewPageEventArgs.cs
- _HTTPDateParse.cs
- RecordConverter.cs
- CaseInsensitiveOrdinalStringComparer.cs
- SQLDecimalStorage.cs
- ButtonBaseAdapter.cs