Code:
/ 4.0 / 4.0 / 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. //------------------------------------------------------------------------------ // // 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
- CommandLineParser.cs
- ImageClickEventArgs.cs
- SqlDataSourceCommandEventArgs.cs
- Mutex.cs
- PtsHost.cs
- UrlPath.cs
- IconBitmapDecoder.cs
- QueryContinueDragEvent.cs
- EmptyElement.cs
- DatePickerAutomationPeer.cs
- HebrewCalendar.cs
- XmlILModule.cs
- ScrollViewer.cs
- ValidatorCompatibilityHelper.cs
- NextPreviousPagerField.cs
- TextTabProperties.cs
- CollectionView.cs
- ZipIOLocalFileHeader.cs
- RegexCapture.cs
- FileDialogPermission.cs
- RsaElement.cs
- DataObjectCopyingEventArgs.cs
- SqlNode.cs
- DBParameter.cs
- SqlExpressionNullability.cs
- MarginsConverter.cs
- BaseEntityWrapper.cs
- ProviderSettingsCollection.cs
- ThemeableAttribute.cs
- QueryOperationResponseOfT.cs
- CompressionTransform.cs
- PolicyChain.cs
- HttpChannelHelper.cs
- ReverseInheritProperty.cs
- StyleBamlTreeBuilder.cs
- PageRequestManager.cs
- cookieexception.cs
- DataGridViewImageColumn.cs
- SecurityUtils.cs
- QuaternionValueSerializer.cs
- BCryptHashAlgorithm.cs
- SqlInternalConnectionTds.cs
- LayoutDump.cs
- ThreadInterruptedException.cs
- StreamInfo.cs
- CssStyleCollection.cs
- QilInvokeLateBound.cs
- ProxyWebPartConnectionCollection.cs
- TextWriter.cs
- ScriptManager.cs
- FileDataSourceCache.cs
- TraceProvider.cs
- basenumberconverter.cs
- QuaternionAnimationUsingKeyFrames.cs
- VisualBrush.cs
- OpCodes.cs
- CodeExporter.cs
- FlagsAttribute.cs
- LinqTreeNodeEvaluator.cs
- DrawItemEvent.cs
- Int16AnimationUsingKeyFrames.cs
- VisualBasicSettingsHandler.cs
- EventManager.cs
- ByteAnimation.cs
- AnnotationAdorner.cs
- SerializableTypeCodeDomSerializer.cs
- InternalDispatchObject.cs
- TextDpi.cs
- StylusPointProperty.cs
- ProviderConnectionPoint.cs
- ConsoleTraceListener.cs
- Expression.DebuggerProxy.cs
- DataGridViewSelectedRowCollection.cs
- HashAlgorithm.cs
- BufferAllocator.cs
- BinaryObjectInfo.cs
- DataGridViewLinkCell.cs
- ModelEditingScope.cs
- WebServiceAttribute.cs
- ScrollData.cs
- EntityCommandExecutionException.cs
- VectorKeyFrameCollection.cs
- DataListItem.cs
- PerfCounters.cs
- CodeStatement.cs
- DecimalStorage.cs
- WebPartEditorApplyVerb.cs
- SystemSounds.cs
- AssemblyCollection.cs
- WebEvents.cs
- PackUriHelper.cs
- SiteMapNodeCollection.cs
- HttpListener.cs
- DataSourceHelper.cs
- SafePointer.cs
- NotificationContext.cs
- FixedSOMPageConstructor.cs
- ReachDocumentReferenceCollectionSerializerAsync.cs
- XmlUtf8RawTextWriter.cs
- CodeMethodMap.cs