Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / security / system / security / authentication / ExtendedProtection / configuration / ServiceNameElementCollection.cs / 1305376 / ServiceNameElementCollection.cs
//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System.Configuration; namespace System.Security.Authentication.ExtendedProtection.Configuration { [ConfigurationCollection(typeof(ServiceNameElement))] public sealed class ServiceNameElementCollection : ConfigurationElementCollection { public ServiceNameElementCollection() { } public ServiceNameElement this[int index] { get { return (ServiceNameElement)BaseGet(index); } set { if (BaseGet(index) != null) { BaseRemoveAt(index); } BaseAdd(index, value); } } public new ServiceNameElement this[string name] { get { return (ServiceNameElement)BaseGet(name); } set { if (BaseGet(name) != null) { BaseRemove(name); } BaseAdd(value); } } public void Add(ServiceNameElement element) { BaseAdd(element); } public void Clear() { BaseClear(); } protected override ConfigurationElement CreateNewElement() { return new ServiceNameElement(); } protected override Object GetElementKey(ConfigurationElement element) { if (element == null) throw new ArgumentNullException("element"); return ((ServiceNameElement)element).Key; } public int IndexOf(ServiceNameElement element) { return BaseIndexOf(element); } public void Remove(ServiceNameElement 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
- Separator.cs
- SharedPersonalizationStateInfo.cs
- BitmapPalette.cs
- jithelpers.cs
- BitmapCodecInfoInternal.cs
- CodeGenerator.cs
- StringToken.cs
- TemplateEditingVerb.cs
- IInstanceTable.cs
- GuidConverter.cs
- StaticFileHandler.cs
- HierarchicalDataSourceControl.cs
- DataGridSortCommandEventArgs.cs
- PhysicalOps.cs
- NativeMethods.cs
- SerializationObjectManager.cs
- LocalTransaction.cs
- SqlTypeSystemProvider.cs
- SplayTreeNode.cs
- FactoryId.cs
- AssertSection.cs
- httpserverutility.cs
- XmlDigitalSignatureProcessor.cs
- HelpInfo.cs
- CodeNamespaceImportCollection.cs
- MessageAction.cs
- Error.cs
- Oci.cs
- EmbeddedObject.cs
- RouteValueExpressionBuilder.cs
- HostingEnvironmentWrapper.cs
- ClockController.cs
- ProviderConnectionPointCollection.cs
- Style.cs
- SubtreeProcessor.cs
- PointCollection.cs
- AssemblySettingAttributes.cs
- StateValidator.cs
- DrawingImage.cs
- WindowsFormsLinkLabel.cs
- WpfPayload.cs
- XpsS0ValidatingLoader.cs
- DataGridViewAccessibleObject.cs
- SmiMetaData.cs
- RegexCompiler.cs
- LifetimeServices.cs
- AppSettingsExpressionBuilder.cs
- MarkupWriter.cs
- RectangleF.cs
- ParameterExpression.cs
- TraceHwndHost.cs
- Route.cs
- BaseProcessProtocolHandler.cs
- ToolBarButtonClickEvent.cs
- FrameworkContentElement.cs
- SafeTokenHandle.cs
- EmbeddedMailObject.cs
- XmlDictionaryReader.cs
- ColorContext.cs
- Int64AnimationUsingKeyFrames.cs
- IndependentlyAnimatedPropertyMetadata.cs
- ToolstripProfessionalRenderer.cs
- _NetworkingPerfCounters.cs
- GridErrorDlg.cs
- InArgumentConverter.cs
- WebPartCancelEventArgs.cs
- UnsafeNativeMethods.cs
- BitmapEffectInputData.cs
- FormViewCommandEventArgs.cs
- OrderedEnumerableRowCollection.cs
- RegexWorker.cs
- RowVisual.cs
- CompensationDesigner.cs
- StateManagedCollection.cs
- StylusPointCollection.cs
- Material.cs
- PeerResolverMode.cs
- IsolatedStorage.cs
- QilReplaceVisitor.cs
- Merger.cs
- TextElement.cs
- CodeDirectoryCompiler.cs
- HyperLinkStyle.cs
- WebResponse.cs
- SqlMethodAttribute.cs
- Int32RectConverter.cs
- DataKey.cs
- EntityDataSourceViewSchema.cs
- CheckBoxAutomationPeer.cs
- ConfigurationStrings.cs
- ParagraphResult.cs
- NativeCompoundFileAPIs.cs
- AmbiguousMatchException.cs
- ToolTipAutomationPeer.cs
- ReceiveSecurityHeaderElementManager.cs
- WebPartZoneCollection.cs
- JumpList.cs
- ThrowHelper.cs
- CommandConverter.cs
- Constant.cs