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
- Profiler.cs
- StaticResourceExtension.cs
- ActivityDesignerAccessibleObject.cs
- HostProtectionException.cs
- ClientBuildManager.cs
- ResourceType.cs
- CompositeCollectionView.cs
- ScriptingRoleServiceSection.cs
- SqlBulkCopyColumnMappingCollection.cs
- WinFormsUtils.cs
- TdsParserStaticMethods.cs
- LogicalTreeHelper.cs
- SmiEventSink_Default.cs
- SoapFault.cs
- MenuItemStyleCollection.cs
- CommandLibraryHelper.cs
- PublisherIdentityPermission.cs
- PlanCompilerUtil.cs
- PropertyBuilder.cs
- Pkcs9Attribute.cs
- PageBreakRecord.cs
- DefaultAssemblyResolver.cs
- RightsManagementPermission.cs
- WebService.cs
- WindowsSecurityTokenAuthenticator.cs
- RegexGroupCollection.cs
- StylusPoint.cs
- GroupByQueryOperator.cs
- DataGridViewRowStateChangedEventArgs.cs
- AncestorChangedEventArgs.cs
- XmlSchemaSimpleType.cs
- NavigationEventArgs.cs
- Pair.cs
- FontEmbeddingManager.cs
- RequestSecurityTokenSerializer.cs
- FileLogRecordHeader.cs
- PopupRoot.cs
- LinkTarget.cs
- HebrewCalendar.cs
- safex509handles.cs
- TargetException.cs
- MatrixUtil.cs
- WebHttpBindingElement.cs
- CodeDirectionExpression.cs
- TextDpi.cs
- Storyboard.cs
- UniqueIdentifierService.cs
- ContextMenuStrip.cs
- URIFormatException.cs
- FileDialog.cs
- tooltip.cs
- CallSiteHelpers.cs
- GridViewColumn.cs
- BaseTemplateBuildProvider.cs
- DBAsyncResult.cs
- PersonalizationStateInfo.cs
- LocatorGroup.cs
- TreeNodeCollection.cs
- DropTarget.cs
- PassportAuthentication.cs
- _CacheStreams.cs
- StylusShape.cs
- BmpBitmapEncoder.cs
- EventProviderBase.cs
- MobileTextWriter.cs
- Hex.cs
- PolyBezierSegmentFigureLogic.cs
- PropertyInfo.cs
- CLSCompliantAttribute.cs
- StreamUpdate.cs
- WebPartTransformerCollection.cs
- MenuItem.cs
- SmiEventSink_DeferedProcessing.cs
- RemoteWebConfigurationHost.cs
- FigureParaClient.cs
- LineSegment.cs
- DataGridViewImageCell.cs
- TableRowCollection.cs
- RegexWriter.cs
- Camera.cs
- ImageSource.cs
- SoapTypeAttribute.cs
- GridViewItemAutomationPeer.cs
- SiteMapDesignerDataSourceView.cs
- SetIterators.cs
- GregorianCalendar.cs
- ServiceObjectContainer.cs
- HtmlTableRowCollection.cs
- CodeSnippetExpression.cs
- ColumnResult.cs
- messageonlyhwndwrapper.cs
- TextParentUndoUnit.cs
- MatchingStyle.cs
- ToolStripSplitButton.cs
- EmptyImpersonationContext.cs
- MobileResource.cs
- EventLog.cs
- VirtualDirectoryMapping.cs
- TypeFieldSchema.cs
- PostBackOptions.cs