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
- StringValidatorAttribute.cs
- InputQueueChannel.cs
- HttpModuleActionCollection.cs
- ColorMap.cs
- Types.cs
- ResourceProviderFactory.cs
- SecurityContext.cs
- FixedSOMGroup.cs
- EventRouteFactory.cs
- WebPartZoneCollection.cs
- Parameter.cs
- StorageEndPropertyMapping.cs
- OuterGlowBitmapEffect.cs
- RowType.cs
- EventToken.cs
- EntryPointNotFoundException.cs
- DataConnectionHelper.cs
- UdpContractFilterBehavior.cs
- ToolBar.cs
- PropertyItemInternal.cs
- TimeSpanStorage.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- ItemList.cs
- RemotingAttributes.cs
- EventLogger.cs
- MessageRpc.cs
- FormViewUpdateEventArgs.cs
- CLSCompliantAttribute.cs
- MembershipUser.cs
- SelectionUIService.cs
- UnmanagedMemoryStream.cs
- MoveSizeWinEventHandler.cs
- XmlElementCollection.cs
- SynchronizedDispatch.cs
- datacache.cs
- CalendarDesigner.cs
- MarkedHighlightComponent.cs
- SqlConnection.cs
- GridView.cs
- GridViewDeleteEventArgs.cs
- UInt16Converter.cs
- XmlSchemaRedefine.cs
- DynamicValidatorEventArgs.cs
- SqlDataSourceCommandEventArgs.cs
- SafeRightsManagementEnvironmentHandle.cs
- EntityDataSourceChangingEventArgs.cs
- LogWriteRestartAreaState.cs
- CmsUtils.cs
- D3DImage.cs
- SimpleFieldTemplateUserControl.cs
- WebPartVerbCollection.cs
- MainMenu.cs
- SQLSingleStorage.cs
- RegexMatch.cs
- InspectionWorker.cs
- Type.cs
- DataSourceXmlSerializer.cs
- SecurityDocument.cs
- EmptyEnumerable.cs
- DataSvcMapFile.cs
- StateRuntime.cs
- ContractNamespaceAttribute.cs
- TypeElementCollection.cs
- PointLightBase.cs
- WebBrowser.cs
- TextPenaltyModule.cs
- DbDeleteCommandTree.cs
- RouteValueExpressionBuilder.cs
- StrongNamePublicKeyBlob.cs
- KnownBoxes.cs
- ValuePattern.cs
- ClientConfigurationSystem.cs
- EnumerableCollectionView.cs
- DesignerActionMethodItem.cs
- AudioException.cs
- TabletCollection.cs
- RepeaterCommandEventArgs.cs
- SqlBulkCopy.cs
- EditorZoneAutoFormat.cs
- Trigger.cs
- SingleAnimationUsingKeyFrames.cs
- ConnectionStringEditor.cs
- QueryOptionExpression.cs
- ProgressBar.cs
- DataGrid.cs
- RemotingServices.cs
- UnsafeCollabNativeMethods.cs
- UnitySerializationHolder.cs
- DataSourceXmlClassAttribute.cs
- DictionaryCustomTypeDescriptor.cs
- MetadataArtifactLoaderCompositeFile.cs
- HashAlgorithm.cs
- SessionStateModule.cs
- WSTrustFeb2005.cs
- HttpFileCollection.cs
- SecurityPermission.cs
- TaiwanCalendar.cs
- CroppedBitmap.cs
- Utils.cs
- HandlerMappingMemo.cs