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
- Config.cs
- FontCollection.cs
- JournalEntry.cs
- WriteTimeStream.cs
- WebPartCatalogCloseVerb.cs
- DbConnectionPoolGroupProviderInfo.cs
- ScopelessEnumAttribute.cs
- WorkflowExecutor.cs
- Trigger.cs
- IBuiltInEvidence.cs
- HtmlToClrEventProxy.cs
- Win32SafeHandles.cs
- StubHelpers.cs
- GridViewDeletedEventArgs.cs
- FixedStringLookup.cs
- TextEditorDragDrop.cs
- XmlSchemaSimpleTypeUnion.cs
- StateMachine.cs
- SplineQuaternionKeyFrame.cs
- BrowserTree.cs
- Baml2006KnownTypes.cs
- SQLMembershipProvider.cs
- DbCommandDefinition.cs
- KeyManager.cs
- SafeEventHandle.cs
- EntityDataSourceSelectedEventArgs.cs
- DetailsViewActionList.cs
- dsa.cs
- CacheOutputQuery.cs
- TargetFrameworkUtil.cs
- COM2ColorConverter.cs
- OleDbInfoMessageEvent.cs
- XmlSchemaAnnotated.cs
- ComponentDispatcherThread.cs
- ReaderContextStackData.cs
- SignatureResourcePool.cs
- SamlAssertionKeyIdentifierClause.cs
- NavigatorInvalidBodyAccessException.cs
- QuaternionConverter.cs
- ImageList.cs
- querybuilder.cs
- sitestring.cs
- MetadataAssemblyHelper.cs
- CodeSnippetCompileUnit.cs
- RouteValueExpressionBuilder.cs
- isolationinterop.cs
- MaterialGroup.cs
- OdbcEnvironmentHandle.cs
- XmlAnyAttributeAttribute.cs
- ControlParser.cs
- SynchronizationLockException.cs
- EntityContainerRelationshipSetEnd.cs
- SmiContext.cs
- DataProviderNameConverter.cs
- CompilationUnit.cs
- ServiceSecurityAuditElement.cs
- GZipUtils.cs
- XomlCompilerError.cs
- SafeNativeMethods.cs
- COM2EnumConverter.cs
- _BufferOffsetSize.cs
- ScrollContentPresenter.cs
- RecognizedWordUnit.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- FocusChangedEventArgs.cs
- TextureBrush.cs
- odbcmetadatacolumnnames.cs
- CollectionViewGroup.cs
- SQLDecimal.cs
- FormatConvertedBitmap.cs
- XPathNodePointer.cs
- DecimalStorage.cs
- SqlUserDefinedTypeAttribute.cs
- ConstraintCollection.cs
- typedescriptorpermissionattribute.cs
- XmlAttribute.cs
- ReaderOutput.cs
- unsafenativemethodsother.cs
- BooleanFunctions.cs
- UpdatePanel.cs
- FacetChecker.cs
- TextSerializer.cs
- cookieexception.cs
- FixedTextBuilder.cs
- ArraySet.cs
- Oid.cs
- WebSysDescriptionAttribute.cs
- UIElementHelper.cs
- WebPartUserCapability.cs
- ImageBrush.cs
- HttpHandlerAction.cs
- RectAnimationClockResource.cs
- ProtectedConfigurationProviderCollection.cs
- JsonSerializer.cs
- HttpResponseHeader.cs
- CodeCatchClause.cs
- ToolStripSeparatorRenderEventArgs.cs
- SymLanguageType.cs
- TextCompositionManager.cs
- SeekStoryboard.cs