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
- DefaultEventAttribute.cs
- ParameterElement.cs
- Win32SafeHandles.cs
- RemotingServices.cs
- XmlCharacterData.cs
- AddingNewEventArgs.cs
- DeleteBookmarkScope.cs
- CodeStatementCollection.cs
- VariableExpressionConverter.cs
- XmlLangPropertyAttribute.cs
- RegularExpressionValidator.cs
- Composition.cs
- OracleCommand.cs
- IsolatedStorageFilePermission.cs
- CompModSwitches.cs
- _emptywebproxy.cs
- BaseCollection.cs
- AsyncDataRequest.cs
- GlobalProxySelection.cs
- UserControlBuildProvider.cs
- EntityUtil.cs
- GridItemProviderWrapper.cs
- ControlPropertyNameConverter.cs
- Polyline.cs
- RuntimeUtils.cs
- ServiceReference.cs
- AssemblyName.cs
- SystemDiagnosticsSection.cs
- UIElementCollection.cs
- ScaleTransform.cs
- DataViewSetting.cs
- CircleEase.cs
- XmlObjectSerializerWriteContextComplexJson.cs
- NavigateEvent.cs
- Matrix.cs
- ServiceDescription.cs
- ScriptManager.cs
- LinkLabel.cs
- NegotiateStream.cs
- AssemblyFilter.cs
- FirstQueryOperator.cs
- ProfilePropertySettingsCollection.cs
- XPathSelfQuery.cs
- DataGridHyperlinkColumn.cs
- XPathNode.cs
- WrapPanel.cs
- SoapInteropTypes.cs
- CharKeyFrameCollection.cs
- Intellisense.cs
- DefaultDialogButtons.cs
- DbParameterCollection.cs
- DeclarativeCatalogPart.cs
- AtomServiceDocumentSerializer.cs
- Rotation3D.cs
- WebPartManager.cs
- SemaphoreFullException.cs
- CorrelationToken.cs
- CapabilitiesSection.cs
- ADMembershipUser.cs
- HttpModuleAction.cs
- MsmqHostedTransportManager.cs
- CRYPTPROTECT_PROMPTSTRUCT.cs
- WindowsSecurityTokenAuthenticator.cs
- Window.cs
- ApplicationFileCodeDomTreeGenerator.cs
- EpmCustomContentDeSerializer.cs
- SplineQuaternionKeyFrame.cs
- PropertyGridEditorPart.cs
- MergePropertyDescriptor.cs
- WebPartsPersonalizationAuthorization.cs
- ProjectedWrapper.cs
- HandlerWithFactory.cs
- RepeatInfo.cs
- _UriTypeConverter.cs
- DataGridViewIntLinkedList.cs
- ChangeBlockUndoRecord.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- listitem.cs
- ListBindableAttribute.cs
- EventWaitHandle.cs
- PageThemeCodeDomTreeGenerator.cs
- SoapSchemaExporter.cs
- DefaultConfirmation.cs
- SimpleBitVector32.cs
- ValueType.cs
- ZipIOCentralDirectoryFileHeader.cs
- SqlDataSourceStatusEventArgs.cs
- CustomValidator.cs
- _Rfc2616CacheValidators.cs
- GridViewCellAutomationPeer.cs
- TimeZone.cs
- TemplateBindingExpression.cs
- KnownTypes.cs
- Light.cs
- SoapAttributeAttribute.cs
- TreeNodeCollection.cs
- QilNode.cs
- TextRunProperties.cs
- WindowsSpinner.cs
- Misc.cs