Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Configuration / ClientTargetCollection.cs / 2 / ClientTargetCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Configuration { using System; using System.Xml; using System.Configuration; using System.Collections.Specialized; using System.Collections; using System.Globalization; using System.IO; using System.Text; using System.ComponentModel; using System.Web.Util; using System.Diagnostics; using System.Security.Permissions; [ConfigurationCollection(typeof(ClientTarget))] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class ClientTargetCollection : ConfigurationElementCollection { private static readonly ConfigurationPropertyCollection _properties; static ClientTargetCollection() { _properties = new ConfigurationPropertyCollection(); } public ClientTargetCollection() : base(StringComparer.OrdinalIgnoreCase) { } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } public String[] AllKeys { get { return StringUtil.ObjectArrayToStringArray(BaseGetAllKeys()); } } public String GetKey(int index) { return (String)BaseGetKey(index); } public void Add(ClientTarget clientTarget) { BaseAdd(clientTarget); } public void Remove(string name) { BaseRemove(name); } public void Remove(ClientTarget clientTarget) { BaseRemove(GetElementKey(clientTarget)); } public void RemoveAt(int index) { BaseRemoveAt(index); } public new ClientTarget this[string name] { get { return (ClientTarget)BaseGet(name); } } public ClientTarget this[int index] { get { return (ClientTarget)BaseGet(index); } set { if (BaseGet(index) != null) { BaseRemoveAt(index); } BaseAdd(index, value); } } public void Clear() { BaseClear(); } protected override ConfigurationElement CreateNewElement() { return new ClientTarget(); } protected override Object GetElementKey(ConfigurationElement element) { return ((ClientTarget)element).Alias; } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- EncodingInfo.cs
- DirtyTextRange.cs
- Point4D.cs
- OutputCacheProfile.cs
- BoundPropertyEntry.cs
- ObjectQueryProvider.cs
- TraceHwndHost.cs
- KerberosRequestorSecurityToken.cs
- DataGridViewRowContextMenuStripNeededEventArgs.cs
- ToolStripPanel.cs
- IResourceProvider.cs
- TimelineGroup.cs
- TransportSecurityProtocolFactory.cs
- AutoScrollHelper.cs
- StateMachineHelpers.cs
- TextTreeFixupNode.cs
- mediaeventshelper.cs
- SID.cs
- XmlCharCheckingReader.cs
- MessageSecurityOverMsmqElement.cs
- TableAutomationPeer.cs
- BitmapEffectCollection.cs
- ISAPIWorkerRequest.cs
- DesignerVerb.cs
- followingsibling.cs
- GenericUriParser.cs
- CheckBoxPopupAdapter.cs
- KeyGesture.cs
- RichTextBox.cs
- WebPartDescriptionCollection.cs
- ScopedMessagePartSpecification.cs
- PolyQuadraticBezierSegment.cs
- ScriptMethodAttribute.cs
- RootProfilePropertySettingsCollection.cs
- Wizard.cs
- FontCacheLogic.cs
- XmlSchemaAnnotation.cs
- Native.cs
- TextSimpleMarkerProperties.cs
- MediaElementAutomationPeer.cs
- ToolStripGrip.cs
- TextContainerChangedEventArgs.cs
- RestClientProxyHandler.cs
- WindowsAuthenticationModule.cs
- ColorEditor.cs
- DynamicDocumentPaginator.cs
- IISMapPath.cs
- ResourceAssociationSetEnd.cs
- ExceptionHandlers.cs
- WebPartCatalogCloseVerb.cs
- AnnotationResourceCollection.cs
- PerformanceCountersElement.cs
- Opcode.cs
- RectangleHotSpot.cs
- HttpConfigurationContext.cs
- CodeDomConfigurationHandler.cs
- SystemKeyConverter.cs
- IPEndPoint.cs
- HtmlFormWrapper.cs
- TemplateFactory.cs
- SQlBooleanStorage.cs
- DataControlPagerLinkButton.cs
- SudsCommon.cs
- SystemColors.cs
- DataServiceHost.cs
- DelegateHelpers.Generated.cs
- ModelFunction.cs
- UnsafeNativeMethodsTablet.cs
- DbConnectionStringCommon.cs
- Publisher.cs
- File.cs
- NodeFunctions.cs
- XmlAttribute.cs
- LinqDataSourceHelper.cs
- XmlObjectSerializerWriteContextComplex.cs
- FlowDocumentScrollViewerAutomationPeer.cs
- DoubleAnimationClockResource.cs
- PeerInvitationResponse.cs
- Manipulation.cs
- TextEndOfLine.cs
- ConfigXmlElement.cs
- IgnorePropertiesAttribute.cs
- SerialReceived.cs
- UniqueIdentifierService.cs
- EnterpriseServicesHelper.cs
- CallTemplateAction.cs
- RootBrowserWindowProxy.cs
- AutomationEventArgs.cs
- TreeViewImageGenerator.cs
- ProfileService.cs
- SiteMapDataSourceDesigner.cs
- NativeMethods.cs
- AttributeXamlType.cs
- AlternateViewCollection.cs
- NonVisualControlAttribute.cs
- DynamicControlParameter.cs
- ErrorHandler.cs
- ChannelSinkStacks.cs
- LongTypeConverter.cs
- InheritanceContextHelper.cs