Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- DataSourceIDConverter.cs
- MasterPageBuildProvider.cs
- ConnectivityStatus.cs
- IItemContainerGenerator.cs
- ReadOnlyDictionary.cs
- GrammarBuilder.cs
- ItemsPresenter.cs
- FontFamily.cs
- FragmentQueryProcessor.cs
- WebPartAddingEventArgs.cs
- SourceLocationProvider.cs
- CodeEventReferenceExpression.cs
- TypeGeneratedEventArgs.cs
- SettingsAttributes.cs
- ProcessModelSection.cs
- Int32Rect.cs
- RegistryKey.cs
- OracleBinary.cs
- OperationContractAttribute.cs
- XmlEntityReference.cs
- NoneExcludedImageIndexConverter.cs
- XmlSchemaProviderAttribute.cs
- OperationContractGenerationContext.cs
- JulianCalendar.cs
- DecoderFallbackWithFailureFlag.cs
- TransformerTypeCollection.cs
- ChannelSettingsElement.cs
- TextTreeTextNode.cs
- ItemCheckEvent.cs
- DesignerSerializationVisibilityAttribute.cs
- DBCommandBuilder.cs
- InstanceLockQueryResult.cs
- PointConverter.cs
- DbQueryCommandTree.cs
- UInt32Storage.cs
- TextParagraphProperties.cs
- WebColorConverter.cs
- DataBindingCollection.cs
- Model3DCollection.cs
- SafeFileMapViewHandle.cs
- TreeNodeCollection.cs
- SamlAction.cs
- SetMemberBinder.cs
- ISessionStateStore.cs
- SHA1Managed.cs
- DateTimePicker.cs
- Vars.cs
- TreeWalker.cs
- KnownBoxes.cs
- Nodes.cs
- ParserStreamGeometryContext.cs
- WorkflowMarkupSerializer.cs
- RSACryptoServiceProvider.cs
- MetadataArtifactLoader.cs
- TypedColumnHandler.cs
- ShutDownListener.cs
- XmlEventCache.cs
- SatelliteContractVersionAttribute.cs
- RequestQueue.cs
- PseudoWebRequest.cs
- NativeMethods.cs
- DoubleAnimationUsingPath.cs
- DesignerVerbCollection.cs
- WindowsEditBoxRange.cs
- XmlDataProvider.cs
- GetPageNumberCompletedEventArgs.cs
- ThumbAutomationPeer.cs
- SafeCryptoHandles.cs
- WbemProvider.cs
- AggregateNode.cs
- QueryCreatedEventArgs.cs
- XmlSerializerNamespaces.cs
- FilterException.cs
- IntegerValidatorAttribute.cs
- DataRowExtensions.cs
- DataGridViewButtonCell.cs
- AdornerPresentationContext.cs
- SqlTriggerContext.cs
- SqlStream.cs
- SiteMapNodeCollection.cs
- UrlAuthorizationModule.cs
- Base64Encoding.cs
- SmiRecordBuffer.cs
- ConditionCollection.cs
- ResetableIterator.cs
- FileCodeGroup.cs
- DataGridRowDetailsEventArgs.cs
- RegisteredHiddenField.cs
- CompressStream.cs
- DynamicILGenerator.cs
- SessionEndingCancelEventArgs.cs
- EventProviderTraceListener.cs
- LayoutUtils.cs
- MessageVersion.cs
- XmlObjectSerializerReadContext.cs
- GenericRootAutomationPeer.cs
- TypeExtensionSerializer.cs
- CodeSnippetTypeMember.cs
- SHA384Managed.cs
- ScrollChrome.cs