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 / WebRequestModuleElementCollection.cs / 1 / WebRequestModuleElementCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net.Configuration { using System; using System.Configuration; using System.Security.Permissions; [ConfigurationCollection(typeof(WebRequestModuleElement))] public sealed class WebRequestModuleElementCollection : ConfigurationElementCollection { public WebRequestModuleElementCollection() { } public WebRequestModuleElement this[int index] { get { return (WebRequestModuleElement)BaseGet(index); } set { if (BaseGet(index) != null) { BaseRemoveAt(index); } BaseAdd(index,value); } } public new WebRequestModuleElement this[string name] { get { return (WebRequestModuleElement)BaseGet(name); } set { if (BaseGet(name) != null) { BaseRemove(name); } BaseAdd(value); } } public void Add(WebRequestModuleElement element) { BaseAdd(element); } public void Clear() { BaseClear(); } protected override ConfigurationElement CreateNewElement() { return new WebRequestModuleElement(); } protected override Object GetElementKey(ConfigurationElement element) { if (element == null) throw new ArgumentNullException("element"); return ((WebRequestModuleElement)element).Key; } public int IndexOf(WebRequestModuleElement element) { return BaseIndexOf(element); } public void Remove(WebRequestModuleElement 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); } } } // 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(WebRequestModuleElement))] public sealed class WebRequestModuleElementCollection : ConfigurationElementCollection { public WebRequestModuleElementCollection() { } public WebRequestModuleElement this[int index] { get { return (WebRequestModuleElement)BaseGet(index); } set { if (BaseGet(index) != null) { BaseRemoveAt(index); } BaseAdd(index,value); } } public new WebRequestModuleElement this[string name] { get { return (WebRequestModuleElement)BaseGet(name); } set { if (BaseGet(name) != null) { BaseRemove(name); } BaseAdd(value); } } public void Add(WebRequestModuleElement element) { BaseAdd(element); } public void Clear() { BaseClear(); } protected override ConfigurationElement CreateNewElement() { return new WebRequestModuleElement(); } protected override Object GetElementKey(ConfigurationElement element) { if (element == null) throw new ArgumentNullException("element"); return ((WebRequestModuleElement)element).Key; } public int IndexOf(WebRequestModuleElement element) { return BaseIndexOf(element); } public void Remove(WebRequestModuleElement 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); } } } // 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
- dataSvcMapFileLoader.cs
- XmlnsDefinitionAttribute.cs
- BitmapMetadata.cs
- LogManagementAsyncResult.cs
- DataFormat.cs
- Constants.cs
- StringFormat.cs
- TypeConvertions.cs
- ConfigXmlSignificantWhitespace.cs
- BuildProviderUtils.cs
- SerializationInfo.cs
- XPathNode.cs
- PropertyTabChangedEvent.cs
- EncryptedPackageFilter.cs
- HTTPRemotingHandler.cs
- CodeArrayCreateExpression.cs
- DependencyPropertyDescriptor.cs
- ToolStripGripRenderEventArgs.cs
- entityreference_tresulttype.cs
- WindowsPrincipal.cs
- TransactionScopeDesigner.cs
- ListViewGroupItemCollection.cs
- ExtensionSimplifierMarkupObject.cs
- SemaphoreSecurity.cs
- Validator.cs
- WebDescriptionAttribute.cs
- GetTokenRequest.cs
- XsltArgumentList.cs
- BitmapFrame.cs
- MimeMapping.cs
- FontSizeConverter.cs
- AssemblyName.cs
- Viewport3DVisual.cs
- AppDomainEvidenceFactory.cs
- RemoteX509Token.cs
- KeyGestureValueSerializer.cs
- EventSinkActivity.cs
- MergablePropertyAttribute.cs
- SqlDataSourceFilteringEventArgs.cs
- WSSecurityOneDotOneReceiveSecurityHeader.cs
- FixedTextSelectionProcessor.cs
- XPathSelfQuery.cs
- AppModelKnownContentFactory.cs
- HashMembershipCondition.cs
- TextProviderWrapper.cs
- RawUIStateInputReport.cs
- ToolStripPanel.cs
- CompositeDuplexElement.cs
- PenContext.cs
- ErrorProvider.cs
- DomainLiteralReader.cs
- XmlHelper.cs
- SQLDecimal.cs
- MimeReflector.cs
- BinHexDecoder.cs
- PeerMessageDispatcher.cs
- TreeNodeCollectionEditorDialog.cs
- TextTrailingCharacterEllipsis.cs
- SystemTcpConnection.cs
- DataContract.cs
- ETagAttribute.cs
- InternalControlCollection.cs
- MissingSatelliteAssemblyException.cs
- ObjectStateEntryDbUpdatableDataRecord.cs
- XmlSerializerFactory.cs
- ReachIDocumentPaginatorSerializer.cs
- _ConnectStream.cs
- EncoderNLS.cs
- TiffBitmapDecoder.cs
- SslStream.cs
- ControlEvent.cs
- StructuredTypeEmitter.cs
- DrawingAttributes.cs
- DecoderNLS.cs
- LocalizableResourceBuilder.cs
- ValidatedControlConverter.cs
- SoapObjectInfo.cs
- PropertyGridCommands.cs
- DetailsViewDeletedEventArgs.cs
- Panel.cs
- TimelineGroup.cs
- WebPartsPersonalizationAuthorization.cs
- SuppressIldasmAttribute.cs
- Mapping.cs
- XmlArrayItemAttributes.cs
- BuildResult.cs
- XmlSchemaAppInfo.cs
- SettingsSection.cs
- _NestedMultipleAsyncResult.cs
- SupportsEventValidationAttribute.cs
- AccessedThroughPropertyAttribute.cs
- LogSwitch.cs
- ImpersonateTokenRef.cs
- SqlCacheDependencyDatabase.cs
- StartUpEventArgs.cs
- RectValueSerializer.cs
- ComplexLine.cs
- Int32KeyFrameCollection.cs
- FixUp.cs
- AxHost.cs