Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / DeploymentSection.cs / 1305376 / 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;
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
- FlowDocumentView.cs
- Debug.cs
- FileFormatException.cs
- MembershipPasswordException.cs
- ClientType.cs
- precedingsibling.cs
- DataRowComparer.cs
- Utils.cs
- BmpBitmapEncoder.cs
- ArrayConverter.cs
- Query.cs
- DesignerCapabilities.cs
- InternalBase.cs
- ScriptManager.cs
- GridToolTip.cs
- FilteredAttributeCollection.cs
- TextEditorTyping.cs
- ValidationEventArgs.cs
- SerialErrors.cs
- IdnElement.cs
- TrustManagerPromptUI.cs
- OdbcFactory.cs
- UIElement3D.cs
- SystemIPv4InterfaceProperties.cs
- CanonicalFontFamilyReference.cs
- BaseTemplateParser.cs
- DataServiceQueryOfT.cs
- AttachedPropertyBrowsableAttribute.cs
- CheckPair.cs
- FloaterParagraph.cs
- PixelFormats.cs
- XmlILIndex.cs
- ReadOnlyAttribute.cs
- ThreadStartException.cs
- mda.cs
- EventProperty.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- Profiler.cs
- TranslateTransform.cs
- DocumentGrid.cs
- PointHitTestParameters.cs
- Event.cs
- TextEmbeddedObject.cs
- RC2.cs
- CngProperty.cs
- MemberProjectionIndex.cs
- WsatServiceAddress.cs
- FixedSOMTableCell.cs
- TypeViewSchema.cs
- Missing.cs
- BindingManagerDataErrorEventArgs.cs
- ProfileSettingsCollection.cs
- InputMethodStateChangeEventArgs.cs
- Utils.cs
- KeyValueSerializer.cs
- OdbcParameterCollection.cs
- OleDbFactory.cs
- ToolboxItem.cs
- LayoutUtils.cs
- Rect3D.cs
- EntityExpressionVisitor.cs
- BuilderPropertyEntry.cs
- TraceContext.cs
- BCLDebug.cs
- ExportOptions.cs
- UIElement.cs
- AnimationException.cs
- DBNull.cs
- Grammar.cs
- ConditionChanges.cs
- ArgumentValue.cs
- AnimationTimeline.cs
- KeyGestureConverter.cs
- Single.cs
- ResourceContainer.cs
- COSERVERINFO.cs
- Point3DCollectionValueSerializer.cs
- ControlCommandSet.cs
- StorageSetMapping.cs
- Brushes.cs
- SqlMultiplexer.cs
- SerTrace.cs
- GeometryModel3D.cs
- HostExecutionContextManager.cs
- TableItemStyle.cs
- ChildrenQuery.cs
- SqlDesignerDataSourceView.cs
- XmlObjectSerializerReadContext.cs
- _KerberosClient.cs
- InertiaTranslationBehavior.cs
- ParagraphVisual.cs
- InstancePersistenceEvent.cs
- MediaTimeline.cs
- DropSource.cs
- DbConnectionPoolOptions.cs
- _ListenerRequestStream.cs
- BitmapEffectRenderDataResource.cs
- GroupItemAutomationPeer.cs
- PasswordRecovery.cs
- DrawingAttributesDefaultValueFactory.cs