Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- TextElement.cs
- UrlMapping.cs
- WebPartDescriptionCollection.cs
- InlineObject.cs
- TableAdapterManagerNameHandler.cs
- ISessionStateStore.cs
- DataSourceHelper.cs
- RSAOAEPKeyExchangeFormatter.cs
- PolicyConversionContext.cs
- AnimationException.cs
- AccessDataSource.cs
- Point4D.cs
- UnionQueryOperator.cs
- ConfigurationLockCollection.cs
- SQLStringStorage.cs
- ClientType.cs
- AttributeQuery.cs
- DatePickerAutomationPeer.cs
- SubstitutionDesigner.cs
- VideoDrawing.cs
- UnsafeNativeMethodsTablet.cs
- PerfCounters.cs
- BamlResourceDeserializer.cs
- CompiledXpathExpr.cs
- SqlBuilder.cs
- ProfileSettingsCollection.cs
- WindowsTitleBar.cs
- AnnouncementEventArgs.cs
- TypedElement.cs
- CodeCompileUnit.cs
- DispatcherHookEventArgs.cs
- SmiEventSink_DeferedProcessing.cs
- ProxyElement.cs
- CLRBindingWorker.cs
- Expression.DebuggerProxy.cs
- ContentElement.cs
- DiscardableAttribute.cs
- SQLMoneyStorage.cs
- ITreeGenerator.cs
- MimeImporter.cs
- FormViewInsertEventArgs.cs
- CustomValidator.cs
- OptimisticConcurrencyException.cs
- VectorAnimationUsingKeyFrames.cs
- _ProxyChain.cs
- UnsafeNativeMethods.cs
- FontFamilyIdentifier.cs
- VSWCFServiceContractGenerator.cs
- BrushValueSerializer.cs
- Internal.cs
- ArgumentException.cs
- DataBoundControl.cs
- MobileTemplatedControlDesigner.cs
- AttachedAnnotationChangedEventArgs.cs
- BitmapData.cs
- MsmqBindingElementBase.cs
- RootAction.cs
- ExpandCollapseProviderWrapper.cs
- MessagingDescriptionAttribute.cs
- RegexMatch.cs
- AppDomain.cs
- dataobject.cs
- RoutedEventArgs.cs
- AsmxEndpointPickerExtension.cs
- QueryParameter.cs
- CodeAttributeArgumentCollection.cs
- SmiGettersStream.cs
- GlyphInfoList.cs
- TagMapInfo.cs
- OpCellTreeNode.cs
- ScriptReferenceEventArgs.cs
- GenerateHelper.cs
- SQLString.cs
- ContextMenu.cs
- WriterOutput.cs
- CurrencyManager.cs
- ImageCodecInfoPrivate.cs
- QilList.cs
- ListView.cs
- Set.cs
- EntityDataSourceState.cs
- CollectionDataContract.cs
- NamespaceCollection.cs
- HierarchicalDataBoundControl.cs
- ZipIOExtraField.cs
- StdValidatorsAndConverters.cs
- _KerberosClient.cs
- FixedSOMFixedBlock.cs
- ModuleBuilderData.cs
- UTF8Encoding.cs
- FaultContext.cs
- TrackingStringDictionary.cs
- ChangeProcessor.cs
- ComboBoxRenderer.cs
- BackgroundFormatInfo.cs
- storagemappingitemcollection.viewdictionary.cs
- GeneratedContractType.cs
- OdbcConnectionHandle.cs
- ErasingStroke.cs
- WebDescriptionAttribute.cs