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 / AuthenticationModuleElementCollection.cs / 1 / AuthenticationModuleElementCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net.Configuration { using System; using System.Configuration; using System.Security.Permissions; [ConfigurationCollection(typeof(AuthenticationModuleElement))] public sealed class AuthenticationModuleElementCollection : ConfigurationElementCollection { public AuthenticationModuleElementCollection() { } public AuthenticationModuleElement this[int index] { get { return (AuthenticationModuleElement)BaseGet(index); } set { if (BaseGet(index) != null) { BaseRemoveAt(index); } BaseAdd(index,value); } } public new AuthenticationModuleElement this[string name] { get { return (AuthenticationModuleElement)BaseGet(name); } set { if (BaseGet(name) != null) { BaseRemove(name); } BaseAdd(value); } } public void Add(AuthenticationModuleElement element) { BaseAdd(element); } public void Clear() { BaseClear(); } protected override ConfigurationElement CreateNewElement() { return new AuthenticationModuleElement(); } protected override Object GetElementKey(ConfigurationElement element) { if (element == null) throw new ArgumentNullException("element"); return ((AuthenticationModuleElement)element).Key; } public int IndexOf(AuthenticationModuleElement element) { return BaseIndexOf(element); } public void Remove(AuthenticationModuleElement 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(AuthenticationModuleElement))] public sealed class AuthenticationModuleElementCollection : ConfigurationElementCollection { public AuthenticationModuleElementCollection() { } public AuthenticationModuleElement this[int index] { get { return (AuthenticationModuleElement)BaseGet(index); } set { if (BaseGet(index) != null) { BaseRemoveAt(index); } BaseAdd(index,value); } } public new AuthenticationModuleElement this[string name] { get { return (AuthenticationModuleElement)BaseGet(name); } set { if (BaseGet(name) != null) { BaseRemove(name); } BaseAdd(value); } } public void Add(AuthenticationModuleElement element) { BaseAdd(element); } public void Clear() { BaseClear(); } protected override ConfigurationElement CreateNewElement() { return new AuthenticationModuleElement(); } protected override Object GetElementKey(ConfigurationElement element) { if (element == null) throw new ArgumentNullException("element"); return ((AuthenticationModuleElement)element).Key; } public int IndexOf(AuthenticationModuleElement element) { return BaseIndexOf(element); } public void Remove(AuthenticationModuleElement 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
- WindowsToolbarAsMenu.cs
- ToolStripRendererSwitcher.cs
- XPathAncestorIterator.cs
- HttpHandlerActionCollection.cs
- FamilyTypefaceCollection.cs
- XmlStreamStore.cs
- GB18030Encoding.cs
- DoubleLinkList.cs
- UnionCqlBlock.cs
- TemplateContainer.cs
- VirtualPath.cs
- TextPointer.cs
- ConfigXmlWhitespace.cs
- CompilerErrorCollection.cs
- Helpers.cs
- UserControlParser.cs
- XomlCompilerHelpers.cs
- Collection.cs
- TableLayoutSettingsTypeConverter.cs
- UncommonField.cs
- KnownBoxes.cs
- XmlRawWriter.cs
- WindowsButton.cs
- BindableTemplateBuilder.cs
- UnsafeNativeMethods.cs
- OleDbWrapper.cs
- DecimalAnimationUsingKeyFrames.cs
- FilteredSchemaElementLookUpTable.cs
- DrawingGroup.cs
- PackageStore.cs
- EntityUtil.cs
- CompositeActivityMarkupSerializer.cs
- ToolStrip.cs
- X509Extension.cs
- XmlSchemaComplexType.cs
- RoleManagerSection.cs
- PermissionSet.cs
- DBSqlParserColumn.cs
- ActiveXContainer.cs
- MaskedTextBox.cs
- WsiProfilesElementCollection.cs
- StaticSiteMapProvider.cs
- SystemIPv6InterfaceProperties.cs
- ArgIterator.cs
- SecurityContextSecurityTokenResolver.cs
- PropertyInfo.cs
- MobileTemplatedControlDesigner.cs
- Timer.cs
- MessageSecurityOverTcp.cs
- ADConnectionHelper.cs
- WrappedKeySecurityToken.cs
- PngBitmapDecoder.cs
- DataTableNewRowEvent.cs
- ButtonChrome.cs
- ActivityPreviewDesigner.cs
- FunctionQuery.cs
- X509Extension.cs
- StaticFileHandler.cs
- SymbolMethod.cs
- IdentityNotMappedException.cs
- DoubleStorage.cs
- DataList.cs
- FileLevelControlBuilderAttribute.cs
- IgnorePropertiesAttribute.cs
- CommandSet.cs
- Panel.cs
- latinshape.cs
- ButtonField.cs
- ToolboxCategory.cs
- PersonalizableTypeEntry.cs
- FileDialog.cs
- DotExpr.cs
- Marshal.cs
- UpdateEventArgs.cs
- TextOptionsInternal.cs
- TextElementEnumerator.cs
- IndexedGlyphRun.cs
- ObjectTag.cs
- RequestCacheEntry.cs
- DefaultAuthorizationContext.cs
- TabPageDesigner.cs
- IDispatchConstantAttribute.cs
- Win32NamedPipes.cs
- Variable.cs
- ProcessingInstructionAction.cs
- AppDomainManager.cs
- CaseInsensitiveOrdinalStringComparer.cs
- ColumnClickEvent.cs
- XmlILStorageConverter.cs
- WebPartCloseVerb.cs
- SiteMapSection.cs
- Win32Exception.cs
- StylusEventArgs.cs
- ProfessionalColorTable.cs
- ClaimTypeElementCollection.cs
- MailAddress.cs
- Rect3D.cs
- JavaScriptObjectDeserializer.cs
- CustomErrorCollection.cs
- Frame.cs