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
- HtmlEncodedRawTextWriter.cs
- UpDownBase.cs
- SatelliteContractVersionAttribute.cs
- ElementUtil.cs
- ObjectReaderCompiler.cs
- XmlValidatingReader.cs
- HideDisabledControlAdapter.cs
- DropDownButton.cs
- GridViewDeleteEventArgs.cs
- IsolatedStorage.cs
- InplaceBitmapMetadataWriter.cs
- SdlChannelSink.cs
- AbstractSvcMapFileLoader.cs
- ApplicationActivator.cs
- SimpleBitVector32.cs
- EqualityComparer.cs
- WebScriptMetadataMessageEncodingBindingElement.cs
- CursorEditor.cs
- CodeMemberField.cs
- RegexNode.cs
- CompositeFontInfo.cs
- ForeignKeyFactory.cs
- SpellerError.cs
- BitmapFrameDecode.cs
- SystemInfo.cs
- WaitHandle.cs
- ListViewItemMouseHoverEvent.cs
- ToolstripProfessionalRenderer.cs
- ToolStripGripRenderEventArgs.cs
- RemotingException.cs
- DataRowCollection.cs
- ViewGenResults.cs
- PropertyTabAttribute.cs
- AssemblyInfo.cs
- ItemCollectionEditor.cs
- UnknownBitmapDecoder.cs
- QuaternionAnimation.cs
- ConnectionManagementElement.cs
- SymmetricKeyWrap.cs
- PeerToPeerException.cs
- PersonalizableAttribute.cs
- DesignerAdRotatorAdapter.cs
- IResourceProvider.cs
- DataGridItem.cs
- SafeNativeMethods.cs
- NotificationContext.cs
- WebPartAuthorizationEventArgs.cs
- CngUIPolicy.cs
- ImageCodecInfo.cs
- CompilerLocalReference.cs
- UInt64Storage.cs
- XmlTextEncoder.cs
- IisTraceListener.cs
- HttpsHostedTransportConfiguration.cs
- EmptyWorkItem.cs
- LogEntryHeaderDeserializer.cs
- Dictionary.cs
- DefaultBinder.cs
- OpenTypeLayout.cs
- StatusCommandUI.cs
- GridViewColumnHeader.cs
- AssemblyInfo.cs
- Memoizer.cs
- MetadataPropertyCollection.cs
- ProjectionPathBuilder.cs
- DecimalAnimationBase.cs
- MimeImporter.cs
- ConstructorBuilder.cs
- QilReference.cs
- WebPartActionVerb.cs
- InvalidOleVariantTypeException.cs
- IdentityModelDictionary.cs
- WebPartDisplayModeEventArgs.cs
- MarshalByValueComponent.cs
- DataView.cs
- FloaterBaseParagraph.cs
- DesignerVerb.cs
- LogSwitch.cs
- AssociationType.cs
- NetTcpSection.cs
- XmlProcessingInstruction.cs
- XmlReaderDelegator.cs
- DisplayNameAttribute.cs
- HttpContextServiceHost.cs
- OuterGlowBitmapEffect.cs
- RestHandlerFactory.cs
- XamlFilter.cs
- DrawToolTipEventArgs.cs
- SoapClientMessage.cs
- MemberDescriptor.cs
- HttpCookie.cs
- SqlDataSourceQueryEditor.cs
- ReflectionPermission.cs
- DesignerAutoFormat.cs
- BitConverter.cs
- Rect3D.cs
- XsdCachingReader.cs
- ActivityBindForm.cs
- TriState.cs
- PrivilegeNotHeldException.cs