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
- TimeSpanValidator.cs
- AccessViolationException.cs
- DataGridViewComponentPropertyGridSite.cs
- DivideByZeroException.cs
- OutputScope.cs
- GroupBox.cs
- MiniParameterInfo.cs
- DocumentViewerAutomationPeer.cs
- FtpRequestCacheValidator.cs
- CodeConditionStatement.cs
- WindowsClaimSet.cs
- Stacktrace.cs
- Grammar.cs
- EarlyBoundInfo.cs
- SingleStorage.cs
- COM2TypeInfoProcessor.cs
- UserMapPath.cs
- BamlWriter.cs
- ParserHooks.cs
- PersistencePipeline.cs
- ExpressionPrefixAttribute.cs
- XmlElementCollection.cs
- GeometryCombineModeValidation.cs
- FormsAuthenticationTicket.cs
- BitmapEffectGroup.cs
- WindowsMenu.cs
- OdbcConnectionStringbuilder.cs
- ContainerParagraph.cs
- TaskScheduler.cs
- HMACRIPEMD160.cs
- WebBrowserPermission.cs
- TemplateFactory.cs
- BookmarkUndoUnit.cs
- GeneralTransform2DTo3D.cs
- DelegatingChannelListener.cs
- TimersDescriptionAttribute.cs
- TrackingProfileManager.cs
- ParentUndoUnit.cs
- SqlConnectionPoolGroupProviderInfo.cs
- ItemAutomationPeer.cs
- InternalTypeHelper.cs
- LocatorManager.cs
- SocketSettings.cs
- RuleCache.cs
- HttpGetProtocolReflector.cs
- ReadOnlyNameValueCollection.cs
- GroupStyle.cs
- PerspectiveCamera.cs
- Touch.cs
- ValueQuery.cs
- HtmlInputPassword.cs
- HtmlElement.cs
- AppModelKnownContentFactory.cs
- AuthorizationContext.cs
- PublisherIdentityPermission.cs
- ToolboxItemWrapper.cs
- PerfCounters.cs
- PropertyEmitter.cs
- DataGridLength.cs
- PolyBezierSegmentFigureLogic.cs
- DocumentApplication.cs
- HtmlInputSubmit.cs
- MimeFormImporter.cs
- CharEntityEncoderFallback.cs
- ShaderEffect.cs
- AutomationPeer.cs
- Tag.cs
- HttpCachePolicy.cs
- DataGridViewCellStyle.cs
- ConsoleKeyInfo.cs
- DateTimeFormatInfoScanner.cs
- Route.cs
- SqlLiftIndependentRowExpressions.cs
- Label.cs
- CodeGeneratorOptions.cs
- CursorInteropHelper.cs
- RolePrincipal.cs
- typedescriptorpermissionattribute.cs
- DecoderBestFitFallback.cs
- FrameworkReadOnlyPropertyMetadata.cs
- StylusLogic.cs
- FlowDocumentScrollViewer.cs
- MissingSatelliteAssemblyException.cs
- SQLDoubleStorage.cs
- HtmlUtf8RawTextWriter.cs
- DropDownList.cs
- DbBuffer.cs
- HelloMessage11.cs
- DbParameterHelper.cs
- ErrorEventArgs.cs
- SqlMethodTransformer.cs
- CodePrimitiveExpression.cs
- _AutoWebProxyScriptEngine.cs
- CaseExpr.cs
- LinqDataSourceUpdateEventArgs.cs
- IncrementalReadDecoders.cs
- HttpCacheVaryByContentEncodings.cs
- BindingManagerDataErrorEventArgs.cs
- Int32AnimationBase.cs
- ToolboxComponentsCreatedEventArgs.cs