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
- CodeObject.cs
- _LocalDataStore.cs
- Rectangle.cs
- SqlInternalConnectionTds.cs
- ComponentCommands.cs
- ValidationSummary.cs
- PhoneCallDesigner.cs
- ToolBarOverflowPanel.cs
- ArithmeticLiteral.cs
- FunctionNode.cs
- EncryptedPackageFilter.cs
- PointCollectionValueSerializer.cs
- EUCJPEncoding.cs
- CreateParams.cs
- LayoutTableCell.cs
- ComponentManagerBroker.cs
- DecimalAnimationUsingKeyFrames.cs
- InternalSafeNativeMethods.cs
- DataGridPagingPage.cs
- WebServiceEnumData.cs
- ILGenerator.cs
- ContentFilePart.cs
- RequestBringIntoViewEventArgs.cs
- CloseSequence.cs
- DataSourceExpressionCollection.cs
- Span.cs
- StringWriter.cs
- TabRenderer.cs
- CheckBox.cs
- LogLogRecordHeader.cs
- ContainerUtilities.cs
- WorkflowApplicationCompletedException.cs
- ListViewCancelEventArgs.cs
- RepeatButton.cs
- URLEditor.cs
- WindowsFormsSectionHandler.cs
- SqlConnection.cs
- StrokeDescriptor.cs
- _TimerThread.cs
- ResourceExpressionBuilder.cs
- VsPropertyGrid.cs
- validationstate.cs
- SqlTriggerAttribute.cs
- RTLAwareMessageBox.cs
- ContextBase.cs
- RequestQueryProcessor.cs
- XmlSchemaExporter.cs
- IsolatedStoragePermission.cs
- ImageListImageEditor.cs
- BaseTemplateParser.cs
- ProviderUtil.cs
- Visual3D.cs
- Misc.cs
- DynamicRenderer.cs
- MimeParameterWriter.cs
- FactoryGenerator.cs
- ClockController.cs
- Label.cs
- NumericUpDownAcceleration.cs
- CollectionType.cs
- EntityStoreSchemaFilterEntry.cs
- XmlName.cs
- DataGridColumn.cs
- ListBoxAutomationPeer.cs
- FormViewPageEventArgs.cs
- HtmlGenericControl.cs
- MD5.cs
- DbQueryCommandTree.cs
- ConnectivityStatus.cs
- SQLMembershipProvider.cs
- RegexMatch.cs
- NavigationWindowAutomationPeer.cs
- SequentialUshortCollection.cs
- ButtonChrome.cs
- TabletDevice.cs
- formatter.cs
- StringUtil.cs
- __FastResourceComparer.cs
- BoundingRectTracker.cs
- XPathNavigatorReader.cs
- FontUnitConverter.cs
- LineSegment.cs
- SharedHttpTransportManager.cs
- SchemaInfo.cs
- propertyentry.cs
- ArrayListCollectionBase.cs
- SmuggledIUnknown.cs
- Line.cs
- Executor.cs
- LicenseContext.cs
- TextServicesCompartmentContext.cs
- Rotation3DKeyFrameCollection.cs
- NativeMethods.cs
- AssemblyName.cs
- LexicalChunk.cs
- DriveNotFoundException.cs
- Input.cs
- SpoolingTask.cs
- UIElementIsland.cs
- SqlDataSourceView.cs