Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / Configuration / DeploymentSection.cs / 1 / 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
- SqlCacheDependency.cs
- DecoderFallbackWithFailureFlag.cs
- ExpressionBuilder.cs
- ApplyImportsAction.cs
- TransformedBitmap.cs
- OdbcParameterCollection.cs
- HyperLinkField.cs
- TagPrefixCollection.cs
- DefaultIfEmptyQueryOperator.cs
- Matrix.cs
- XmlAtomicValue.cs
- ValueChangedEventManager.cs
- DisableDpiAwarenessAttribute.cs
- Base64Encoder.cs
- SingleAnimationUsingKeyFrames.cs
- EventsTab.cs
- GlobalEventManager.cs
- MetadataArtifactLoaderResource.cs
- SecurityBindingElement.cs
- ConfigurationValidatorAttribute.cs
- HtmlPhoneCallAdapter.cs
- Int64KeyFrameCollection.cs
- ProjectionPathSegment.cs
- AttributeSetAction.cs
- SmiEventSink_Default.cs
- TableLayoutStyleCollection.cs
- NativeMethods.cs
- BezierSegment.cs
- FontNameConverter.cs
- TeredoHelper.cs
- BitmapFrame.cs
- TreeNodeConverter.cs
- CodeDirectionExpression.cs
- QuaternionAnimationUsingKeyFrames.cs
- ComponentConverter.cs
- CredentialCache.cs
- MetadataCollection.cs
- ObservableDictionary.cs
- StretchValidation.cs
- TripleDESCryptoServiceProvider.cs
- PasswordBoxAutomationPeer.cs
- FusionWrap.cs
- CheckPair.cs
- ContentElement.cs
- XmlSignificantWhitespace.cs
- QuerySelectOp.cs
- XhtmlBasicFormAdapter.cs
- UIElement3D.cs
- SplitterEvent.cs
- DataGridViewTopRowAccessibleObject.cs
- InputQueueChannel.cs
- OpenTypeCommon.cs
- TransformationRules.cs
- SourceChangedEventArgs.cs
- PeerName.cs
- HtmlInputRadioButton.cs
- StringValidatorAttribute.cs
- XmlNamespaceMappingCollection.cs
- OpenTypeLayoutCache.cs
- PrintDialog.cs
- RawStylusSystemGestureInputReport.cs
- UIElementCollection.cs
- XPathItem.cs
- DataMemberListEditor.cs
- XmlTextEncoder.cs
- WaitHandle.cs
- AnimationTimeline.cs
- DataBoundControlAdapter.cs
- CodeAssignStatement.cs
- DelayedRegex.cs
- DispatcherHooks.cs
- TextParagraphProperties.cs
- RangeValueProviderWrapper.cs
- DataListItemCollection.cs
- DiagnosticTraceRecords.cs
- EditorPart.cs
- ConfigurationValue.cs
- CommonRemoteMemoryBlock.cs
- InfoCardMasterKey.cs
- BStrWrapper.cs
- ElementMarkupObject.cs
- TerminateSequence.cs
- NodeInfo.cs
- ApplyImportsAction.cs
- OrderByQueryOptionExpression.cs
- CharEnumerator.cs
- SiteMapPath.cs
- ping.cs
- SelfSignedCertificate.cs
- Site.cs
- SqlParameter.cs
- UserControl.cs
- PeerDuplexChannelListener.cs
- ListDictionary.cs
- XmlFormatWriterGenerator.cs
- WebPartDisplayModeCollection.cs
- XamlToRtfWriter.cs
- KerberosReceiverSecurityToken.cs
- TraceLevelStore.cs
- ToolStripDropDownClosingEventArgs.cs