Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / DeploymentSection.cs / 1305376 / 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; 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
- CompoundFileStreamReference.cs
- TextElementEnumerator.cs
- SwitchAttribute.cs
- NavigatingCancelEventArgs.cs
- Unit.cs
- SystemNetHelpers.cs
- TemplatePartAttribute.cs
- EventListener.cs
- ServiceProviders.cs
- XmlWrappingReader.cs
- PersonalizationProviderCollection.cs
- AnnouncementInnerClientCD1.cs
- ProfilePropertyNameValidator.cs
- MetadataProperty.cs
- BamlRecordReader.cs
- Int64AnimationUsingKeyFrames.cs
- OrderingQueryOperator.cs
- DecoderFallback.cs
- Stopwatch.cs
- GridViewColumnHeaderAutomationPeer.cs
- HyperlinkAutomationPeer.cs
- PhysicalOps.cs
- ChannelBuilder.cs
- DecimalAnimation.cs
- XsdBuilder.cs
- MarginCollapsingState.cs
- SecurityResources.cs
- SafeCryptContextHandle.cs
- CultureInfo.cs
- CustomExpressionEventArgs.cs
- contentDescriptor.cs
- IPipelineRuntime.cs
- ScrollBarRenderer.cs
- ImageSource.cs
- DependentTransaction.cs
- SqlCachedBuffer.cs
- MaskInputRejectedEventArgs.cs
- wmiprovider.cs
- GeneralTransform.cs
- SafeEventLogWriteHandle.cs
- UserControlParser.cs
- RelatedCurrencyManager.cs
- TextTreeObjectNode.cs
- HtmlTable.cs
- MapPathBasedVirtualPathProvider.cs
- ProvideValueServiceProvider.cs
- ExtensionSurface.cs
- RbTree.cs
- RegexBoyerMoore.cs
- DirectoryLocalQuery.cs
- PageTheme.cs
- TextServicesLoader.cs
- ChannelManager.cs
- RunWorkerCompletedEventArgs.cs
- SafeProcessHandle.cs
- RefreshEventArgs.cs
- RootBrowserWindow.cs
- ScrollProperties.cs
- BinaryWriter.cs
- SafeNativeMethods.cs
- CodeNamespaceCollection.cs
- SymbolMethod.cs
- BrowserDefinition.cs
- WebPartCollection.cs
- ByteAnimationBase.cs
- ForwardPositionQuery.cs
- DocumentViewerBase.cs
- DbDataSourceEnumerator.cs
- CachedRequestParams.cs
- _Connection.cs
- ItemsPanelTemplate.cs
- regiisutil.cs
- SimpleType.cs
- TextWriterTraceListener.cs
- OpenTypeLayout.cs
- filewebrequest.cs
- ExtensionQuery.cs
- TextBreakpoint.cs
- initElementDictionary.cs
- InvalidAsynchronousStateException.cs
- PropertyValueUIItem.cs
- PageBreakRecord.cs
- PointLight.cs
- odbcmetadatacollectionnames.cs
- CodePageUtils.cs
- CodeDirectoryCompiler.cs
- StringWriter.cs
- ClientRuntime.cs
- KeyGestureValueSerializer.cs
- StylusButton.cs
- DrawingDrawingContext.cs
- WindowsListViewItemStartMenu.cs
- RegexRunnerFactory.cs
- ListViewInsertedEventArgs.cs
- shaper.cs
- ReceiveReply.cs
- ControlValuePropertyAttribute.cs
- Vector3DAnimationUsingKeyFrames.cs
- CheckBoxPopupAdapter.cs
- XmlSerializerAssemblyAttribute.cs