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
- ValidationError.cs
- Misc.cs
- DbConnectionPoolIdentity.cs
- DataServiceExpressionVisitor.cs
- ListViewItemEventArgs.cs
- NonDualMessageSecurityOverHttpElement.cs
- PersonalizablePropertyEntry.cs
- ZipQueryOperator.cs
- FieldBuilder.cs
- PropertyChangeTracker.cs
- RelationshipManager.cs
- ObjRef.cs
- StylusPlugin.cs
- BaseValidator.cs
- ImageClickEventArgs.cs
- UpdatePanel.cs
- BadImageFormatException.cs
- NavigationEventArgs.cs
- TableCellCollection.cs
- OracleConnection.cs
- HWStack.cs
- _ScatterGatherBuffers.cs
- _NtlmClient.cs
- ClientSponsor.cs
- FormViewDeletedEventArgs.cs
- PropertyBuilder.cs
- BindingBase.cs
- HorizontalAlignConverter.cs
- PersonalizationStateInfo.cs
- FutureFactory.cs
- OdbcConnectionStringbuilder.cs
- ReliableRequestSessionChannel.cs
- ImageAutomationPeer.cs
- ObjectMaterializedEventArgs.cs
- ItemContainerGenerator.cs
- SaveFileDialog.cs
- sqlstateclientmanager.cs
- dsa.cs
- DecimalSumAggregationOperator.cs
- AsyncWaitHandle.cs
- MappingException.cs
- WebConvert.cs
- RectConverter.cs
- SearchExpression.cs
- DataGridItem.cs
- WebPartDisplayModeEventArgs.cs
- ILGenerator.cs
- XmlFormatReaderGenerator.cs
- ResumeStoryboard.cs
- X509CertificateEndpointIdentity.cs
- InputLangChangeRequestEvent.cs
- SingleResultAttribute.cs
- TextContainerChangedEventArgs.cs
- XmlQuerySequence.cs
- DataGridViewCheckBoxCell.cs
- SharedPerformanceCounter.cs
- ByeMessage11.cs
- LayoutEditorPart.cs
- ClientOptions.cs
- ToolStripPanel.cs
- KeyPullup.cs
- SQLInt32.cs
- FixedSOMPage.cs
- GradientSpreadMethodValidation.cs
- SelectedGridItemChangedEvent.cs
- LastQueryOperator.cs
- WebResourceAttribute.cs
- SafeTimerHandle.cs
- SQLInt64.cs
- DataControlFieldTypeEditor.cs
- ExternalFile.cs
- TextEditor.cs
- PerformanceCounterCategory.cs
- RoleGroupCollectionEditor.cs
- EventLogReader.cs
- HintTextConverter.cs
- _NestedMultipleAsyncResult.cs
- ResourceAttributes.cs
- _emptywebproxy.cs
- DataGridItem.cs
- JsonFormatReaderGenerator.cs
- Vector3DConverter.cs
- XmlComplianceUtil.cs
- Splitter.cs
- BasicCellRelation.cs
- EncryptedType.cs
- StringArrayConverter.cs
- DesignerInterfaces.cs
- Point4D.cs
- TextServicesLoader.cs
- DataListItemEventArgs.cs
- DataErrorValidationRule.cs
- WebPartDisplayModeEventArgs.cs
- ConfigurationManager.cs
- AsymmetricSignatureFormatter.cs
- DirectoryGroupQuery.cs
- _ChunkParse.cs
- XPathMessageContext.cs
- SecurityHeaderLayout.cs
- ActiveDocumentEvent.cs