Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Configuration / ClientTargetSection.cs / 2 / ClientTargetSection.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; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class ClientTargetSection : ConfigurationSection { private static ConfigurationPropertyCollection _properties; #region Property Declarations private static readonly ConfigurationProperty _propClientTargets = new ConfigurationProperty(null, typeof(ClientTargetCollection), null, ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsDefaultCollection); #endregion static ClientTargetSection() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propClientTargets); } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("", IsRequired = true, IsDefaultCollection = true)] public ClientTargetCollection ClientTargets { get { return (ClientTargetCollection)base[_propClientTargets]; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- OleDbParameterCollection.cs
- Converter.cs
- TransformGroup.cs
- StreamReader.cs
- SecureEnvironment.cs
- SqlCharStream.cs
- ConstrainedDataObject.cs
- basecomparevalidator.cs
- MetafileHeaderWmf.cs
- DBProviderConfigurationHandler.cs
- BulletedListEventArgs.cs
- PolyLineSegment.cs
- DataGridPageChangedEventArgs.cs
- RtfToken.cs
- FormView.cs
- TextRenderer.cs
- Shape.cs
- AuthStoreRoleProvider.cs
- IgnoreSectionHandler.cs
- NoneExcludedImageIndexConverter.cs
- ConcurrentStack.cs
- ObjectListComponentEditor.cs
- ComboBox.cs
- ComponentCollection.cs
- InvalidWMPVersionException.cs
- DrawingContextWalker.cs
- MessageSecurityOverHttpElement.cs
- FormViewDeleteEventArgs.cs
- SHA384.cs
- FixedTextContainer.cs
- HttpsChannelFactory.cs
- ControlCollection.cs
- UInt16.cs
- ModelPerspective.cs
- PaintValueEventArgs.cs
- DesignerCategoryAttribute.cs
- RequestResizeEvent.cs
- SolidColorBrush.cs
- ObjectDataSourceMethodEditor.cs
- RsaKeyIdentifierClause.cs
- UpdateEventArgs.cs
- XmlLinkedNode.cs
- DataGridViewCellContextMenuStripNeededEventArgs.cs
- BinaryObjectInfo.cs
- RIPEMD160Managed.cs
- QilGenerator.cs
- XmlDataSourceView.cs
- WebPartPersonalization.cs
- OutputCacheSection.cs
- XamlInt32CollectionSerializer.cs
- MultiTrigger.cs
- QueryOutputWriter.cs
- CallbackDebugBehavior.cs
- TextEditorContextMenu.cs
- LinqDataSourceDeleteEventArgs.cs
- MultiPageTextView.cs
- EllipseGeometry.cs
- HttpCachePolicyElement.cs
- WorkflowInstanceProvider.cs
- Light.cs
- SHA384Managed.cs
- SystemResourceHost.cs
- XmlDocumentSurrogate.cs
- HandlerFactoryWrapper.cs
- CodeRemoveEventStatement.cs
- SpeechDetectedEventArgs.cs
- _SingleItemRequestCache.cs
- ConfigUtil.cs
- GridProviderWrapper.cs
- TransformerInfo.cs
- RenderCapability.cs
- ClientSection.cs
- ListenerConfig.cs
- Console.cs
- FileDialog.cs
- PageEventArgs.cs
- StrokeNodeEnumerator.cs
- TextRangeEditLists.cs
- EntityDataSourceEntityTypeFilterItem.cs
- KerberosSecurityTokenAuthenticator.cs
- ReferencedAssembly.cs
- ServiceModelEnumValidator.cs
- CompositeFontInfo.cs
- SqlBuilder.cs
- cryptoapiTransform.cs
- InlinedLocationReference.cs
- InvalidCastException.cs
- Int64.cs
- PtsHelper.cs
- XmlSchemaSimpleTypeRestriction.cs
- Span.cs
- TransformDescriptor.cs
- TableItemPattern.cs
- TPLETWProvider.cs
- CheckedPointers.cs
- DataGridView.cs
- BamlBinaryReader.cs
- ConfigXmlAttribute.cs
- SchemaImporterExtensionsSection.cs
- PictureBox.cs