Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / Configuration / DeploymentSection.cs / 2 / DeploymentSection.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.IO; using System.Text; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class DeploymentSection : ConfigurationSection { private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propRetail = new ConfigurationProperty("retail", typeof(bool),false,ConfigurationPropertyOptions.None); /**/ static DeploymentSection() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propRetail); } public DeploymentSection() { } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("retail", DefaultValue = false)] public bool Retail { get { return (bool)base[_propRetail]; } set { base[_propRetail] = value; } } private static bool s_hasCachedData; private static bool s_retail; internal static bool RetailInternal { get { if (!s_hasCachedData) { s_retail = RuntimeConfig.GetAppConfig().Deployment.Retail; s_hasCachedData = true; } return s_retail; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ // // 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.IO; using System.Text; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class DeploymentSection : ConfigurationSection { private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propRetail = new ConfigurationProperty("retail", typeof(bool),false,ConfigurationPropertyOptions.None); /**/ static DeploymentSection() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propRetail); } public DeploymentSection() { } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("retail", DefaultValue = false)] public bool Retail { get { return (bool)base[_propRetail]; } set { base[_propRetail] = value; } } private static bool s_hasCachedData; private static bool s_retail; internal static bool RetailInternal { get { if (!s_hasCachedData) { s_retail = RuntimeConfig.GetAppConfig().Deployment.Retail; s_hasCachedData = true; } return s_retail; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DrawingContext.cs
- ReadOnlyCollectionBase.cs
- FormatConvertedBitmap.cs
- OutOfProcStateClientManager.cs
- DataContractSerializerOperationBehavior.cs
- SafeViewOfFileHandle.cs
- Serializer.cs
- DataFormats.cs
- EventToken.cs
- TextEffect.cs
- SqlConnectionStringBuilder.cs
- LinearQuaternionKeyFrame.cs
- GlyphRunDrawing.cs
- Encoder.cs
- Cloud.cs
- ApplicationServiceHelper.cs
- CompositeActivityValidator.cs
- X500Name.cs
- SessionParameter.cs
- SymbolEqualComparer.cs
- TableItemStyle.cs
- EmptyEnumerator.cs
- CodeArgumentReferenceExpression.cs
- CodePrimitiveExpression.cs
- EntityParameter.cs
- PackagePartCollection.cs
- WebPartCloseVerb.cs
- BitmapEffectDrawing.cs
- ColumnReorderedEventArgs.cs
- CorrelationManager.cs
- Drawing.cs
- PeerResolverSettings.cs
- GetFileNameResult.cs
- FunctionImportElement.cs
- ObjectDisposedException.cs
- ToolStripRenderer.cs
- HtmlProps.cs
- SessionState.cs
- NameValueSectionHandler.cs
- HttpApplication.cs
- UserPersonalizationStateInfo.cs
- ObjectCloneHelper.cs
- WinEventWrap.cs
- BindingOperations.cs
- SQLSingleStorage.cs
- ThemeableAttribute.cs
- OdbcException.cs
- ValidationSummary.cs
- DateTimeValueSerializerContext.cs
- DodSequenceMerge.cs
- Transactions.cs
- FrameDimension.cs
- AlphaSortedEnumConverter.cs
- EditBehavior.cs
- Stack.cs
- HtmlLink.cs
- FixedSchema.cs
- ChtmlFormAdapter.cs
- CodeSubDirectory.cs
- precedingquery.cs
- Nodes.cs
- XPathParser.cs
- AdPostCacheSubstitution.cs
- AssemblyCollection.cs
- TextElementAutomationPeer.cs
- HMAC.cs
- AutoResizedEvent.cs
- DesignerProperties.cs
- StsCommunicationException.cs
- SizeAnimationClockResource.cs
- SafeFileMapViewHandle.cs
- ImageAttributes.cs
- ApplicationHost.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- ImageBrush.cs
- AmbientLight.cs
- ImageBrush.cs
- ImageFormatConverter.cs
- BindUriHelper.cs
- Point4D.cs
- elementinformation.cs
- SystemResources.cs
- ModuleConfigurationInfo.cs
- LockedAssemblyCache.cs
- GeneratedView.cs
- OdbcConnectionStringbuilder.cs
- FormClosingEvent.cs
- VectorValueSerializer.cs
- SafeHandles.cs
- XmlEncodedRawTextWriter.cs
- AssociationTypeEmitter.cs
- CaseCqlBlock.cs
- UnmanagedMarshal.cs
- DesignerAdapterAttribute.cs
- FrameSecurityDescriptor.cs
- XmlSchemaSimpleTypeUnion.cs
- _Events.cs
- EncoderParameters.cs
- BaseServiceProvider.cs
- SparseMemoryStream.cs