Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / Configuration / DeploymentSection.cs / 5 / 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. // //----------------------------------------------------------------------------- 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PropertyIDSet.cs
- SqlDataSourceConfigureFilterForm.cs
- PolicyException.cs
- SessionPageStatePersister.cs
- TableDetailsRow.cs
- TableLayoutCellPaintEventArgs.cs
- OutputWindow.cs
- ComponentFactoryHelpers.cs
- ObjectStateFormatter.cs
- HeaderedItemsControl.cs
- FormViewInsertedEventArgs.cs
- messageonlyhwndwrapper.cs
- DataGridViewTopLeftHeaderCell.cs
- TextFindEngine.cs
- UserControlBuildProvider.cs
- Normalization.cs
- CookieParameter.cs
- Convert.cs
- UnsafeNativeMethods.cs
- Logging.cs
- NamespaceTable.cs
- ActivationProxy.cs
- IPHostEntry.cs
- JsonEnumDataContract.cs
- GridViewRowEventArgs.cs
- AttributeData.cs
- SqlNamer.cs
- DependencyStoreSurrogate.cs
- ImageAnimator.cs
- TabItemWrapperAutomationPeer.cs
- ZipIOExtraFieldPaddingElement.cs
- XmlNodeChangedEventArgs.cs
- FileUtil.cs
- SqlProcedureAttribute.cs
- XsltSettings.cs
- CompModSwitches.cs
- SmtpSection.cs
- Opcode.cs
- TimeSpanOrInfiniteConverter.cs
- DataGridDetailsPresenter.cs
- SimpleMailWebEventProvider.cs
- IdentitySection.cs
- ObjectListShowCommandsEventArgs.cs
- EntityConnectionStringBuilderItem.cs
- XmlSchemaSimpleType.cs
- StringFormat.cs
- DataAccessException.cs
- ObjectPersistData.cs
- EditorOptionAttribute.cs
- ClientConfigurationHost.cs
- ReadingWritingEntityEventArgs.cs
- ThrowHelper.cs
- OleDbPermission.cs
- TransformPattern.cs
- StatusCommandUI.cs
- TextTreeDeleteContentUndoUnit.cs
- Compiler.cs
- Evidence.cs
- DeclarativeCatalogPart.cs
- DataExpression.cs
- BookmarkNameHelper.cs
- PointLightBase.cs
- ElementFactory.cs
- InvalidAsynchronousStateException.cs
- IResourceProvider.cs
- ClientProxyGenerator.cs
- HwndProxyElementProvider.cs
- XmlDataDocument.cs
- NonVisualControlAttribute.cs
- HttpConfigurationContext.cs
- UndirectedGraph.cs
- DispatcherSynchronizationContext.cs
- _ConnectStream.cs
- HashCryptoHandle.cs
- Method.cs
- BitmapFrame.cs
- TextEffectResolver.cs
- DataGridView.cs
- ServiceDebugBehavior.cs
- InvokeBase.cs
- Thumb.cs
- ExtendedPropertyDescriptor.cs
- TcpChannelListener.cs
- Dynamic.cs
- NominalTypeEliminator.cs
- ZipIOLocalFileBlock.cs
- BinaryCommonClasses.cs
- XPathAxisIterator.cs
- LiteralLink.cs
- TextBoxBase.cs
- RuntimeResourceSet.cs
- ZoneIdentityPermission.cs
- HtmlInputControl.cs
- ValidatorUtils.cs
- Compilation.cs
- control.ime.cs
- ChannelCacheDefaults.cs
- ModelItemImpl.cs
- ClientFormsAuthenticationMembershipProvider.cs
- CompositeControl.cs