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
- ToolStripItemClickedEventArgs.cs
- BlobPersonalizationState.cs
- GeometryModel3D.cs
- PreProcessor.cs
- EditingScope.cs
- ThumbAutomationPeer.cs
- AncestorChangedEventArgs.cs
- ProfileEventArgs.cs
- AssemblyUtil.cs
- FileVersionInfo.cs
- SiteMapPath.cs
- BidOverLoads.cs
- RowToFieldTransformer.cs
- HandlerBase.cs
- CheckBoxField.cs
- ListControl.cs
- CodeTypeDeclaration.cs
- Point4D.cs
- FieldInfo.cs
- CompilerCollection.cs
- NavigatorOutput.cs
- ChangesetResponse.cs
- CompatibleComparer.cs
- SqlDataSourceEnumerator.cs
- XPathBinder.cs
- QueryableDataSource.cs
- EventProperty.cs
- ExternalCalls.cs
- IdentifierService.cs
- CodeLinePragma.cs
- TextEditorMouse.cs
- IList.cs
- XpsS0ValidatingLoader.cs
- InvokeMethod.cs
- ProfileBuildProvider.cs
- ModelVisual3D.cs
- BamlTreeMap.cs
- WindowCollection.cs
- EventData.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- UnsafeCollabNativeMethods.cs
- ContainerSelectorGlyph.cs
- DockPanel.cs
- DesignerDataConnection.cs
- CmsUtils.cs
- WindowInteractionStateTracker.cs
- tabpagecollectioneditor.cs
- SchemaType.cs
- BasicKeyConstraint.cs
- LogFlushAsyncResult.cs
- SelectionWordBreaker.cs
- SpeechDetectedEventArgs.cs
- CheckPair.cs
- RegexCompilationInfo.cs
- WindowsRichEdit.cs
- ItemCollection.cs
- ScriptMethodAttribute.cs
- SectionUpdates.cs
- InternalCache.cs
- SqlClientPermission.cs
- GorillaCodec.cs
- NotFiniteNumberException.cs
- RawStylusInputCustomData.cs
- IdentityManager.cs
- RightsManagementInformation.cs
- BindableTemplateBuilder.cs
- ReturnEventArgs.cs
- TableCellsCollectionEditor.cs
- ModelItemImpl.cs
- DbException.cs
- DataGridBoolColumn.cs
- Baml2006SchemaContext.cs
- StringValueConverter.cs
- securitycriticaldataClass.cs
- StyleTypedPropertyAttribute.cs
- ResourcesChangeInfo.cs
- EUCJPEncoding.cs
- DataSourceProvider.cs
- LayoutManager.cs
- AnnotationComponentChooser.cs
- PointAnimation.cs
- WebHttpBindingCollectionElement.cs
- SynthesizerStateChangedEventArgs.cs
- ExceptionHandlersDesigner.cs
- RemoveFromCollection.cs
- HashCodeCombiner.cs
- TiffBitmapEncoder.cs
- CroppedBitmap.cs
- DetailsViewPageEventArgs.cs
- ObjRef.cs
- ServiceEndpointCollection.cs
- DnsPermission.cs
- HttpResponseInternalWrapper.cs
- SmiConnection.cs
- InputScopeConverter.cs
- ScrollViewerAutomationPeer.cs
- Operand.cs
- ToolBarTray.cs
- PkcsMisc.cs
- StringReader.cs