Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Configuration / System / Configuration / ContextInformation.cs / 1 / ContextInformation.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; namespace System.Configuration { // ContextInformation // // Class that encapsulates all of the Context Information that // is going to be associated with a ConfigurationElement // public sealed class ContextInformation { private bool _hostingContextEvaluated; // Do we know the Context? private object _hostingContext; // HostingContext private BaseConfigurationRecord _configRecord; // Constructor // // internal ContextInformation( BaseConfigurationRecord configRecord ) { Debug.Assert(configRecord != null, "configRecord != null"); _hostingContextEvaluated = false; _hostingContext = null; _configRecord = configRecord; } // HostingContext // // Retrieve the Context of the environment that we are being // evaluated in. (currently this can we WebContext, ExeContext, // or null) // public object HostingContext { get { if ( !_hostingContextEvaluated ) { // Retrieve Context _hostingContext = _configRecord.ConfigContext; _hostingContextEvaluated = true; } return _hostingContext; } } // IsMachineLevel // // Is this the machine.config file or not? If it is not // then use the Hosting Context to determine where you are // and in what hierarchy you are in // public bool IsMachineLevel { get { return _configRecord.IsMachineConfig; } } // GetSection // // Get a Section within the context of where we are. What // ever section you retrieve here will be at the same level // in the hierarchy as we are. // // Note: Watch out for a situation where you request a section // that will call you. // public object GetSection(string sectionName) { return _configRecord.GetSection(sectionName); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; namespace System.Configuration { // ContextInformation // // Class that encapsulates all of the Context Information that // is going to be associated with a ConfigurationElement // public sealed class ContextInformation { private bool _hostingContextEvaluated; // Do we know the Context? private object _hostingContext; // HostingContext private BaseConfigurationRecord _configRecord; // Constructor // // internal ContextInformation( BaseConfigurationRecord configRecord ) { Debug.Assert(configRecord != null, "configRecord != null"); _hostingContextEvaluated = false; _hostingContext = null; _configRecord = configRecord; } // HostingContext // // Retrieve the Context of the environment that we are being // evaluated in. (currently this can we WebContext, ExeContext, // or null) // public object HostingContext { get { if ( !_hostingContextEvaluated ) { // Retrieve Context _hostingContext = _configRecord.ConfigContext; _hostingContextEvaluated = true; } return _hostingContext; } } // IsMachineLevel // // Is this the machine.config file or not? If it is not // then use the Hosting Context to determine where you are // and in what hierarchy you are in // public bool IsMachineLevel { get { return _configRecord.IsMachineConfig; } } // GetSection // // Get a Section within the context of where we are. What // ever section you retrieve here will be at the same level // in the hierarchy as we are. // // Note: Watch out for a situation where you request a section // that will call you. // public object GetSection(string sectionName) { return _configRecord.GetSection(sectionName); } } } // 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
- ImageSourceValueSerializer.cs
- ColumnWidthChangingEvent.cs
- DataGridViewCellEventArgs.cs
- Binding.cs
- NextPreviousPagerField.cs
- PagerStyle.cs
- Exceptions.cs
- UserControlCodeDomTreeGenerator.cs
- _AutoWebProxyScriptWrapper.cs
- ChtmlSelectionListAdapter.cs
- XmlIncludeAttribute.cs
- Rules.cs
- WaitHandleCannotBeOpenedException.cs
- ConfigurationManagerInternalFactory.cs
- IndependentAnimationStorage.cs
- CollectionViewGroupRoot.cs
- MissingSatelliteAssemblyException.cs
- StringCollection.cs
- MenuItemStyleCollection.cs
- DoubleUtil.cs
- FormsAuthenticationUserCollection.cs
- WindowsToolbarItemAsMenuItem.cs
- ContentValidator.cs
- HttpHandlerActionCollection.cs
- DataGridCell.cs
- PageAsyncTask.cs
- OuterGlowBitmapEffect.cs
- TextRangeAdaptor.cs
- SessionEndingEventArgs.cs
- ConstrainedDataObject.cs
- SoundPlayerAction.cs
- RawKeyboardInputReport.cs
- OpacityConverter.cs
- StylusCaptureWithinProperty.cs
- UserControlBuildProvider.cs
- CacheMemory.cs
- FileLevelControlBuilderAttribute.cs
- AmbientLight.cs
- ProviderIncompatibleException.cs
- CacheOutputQuery.cs
- ResourceDefaultValueAttribute.cs
- Exceptions.cs
- SqlConnectionFactory.cs
- GroupedContextMenuStrip.cs
- PropertyOverridesDialog.cs
- BlurEffect.cs
- Rotation3D.cs
- ThumbAutomationPeer.cs
- DoubleLinkListEnumerator.cs
- DispatcherHooks.cs
- MailDefinition.cs
- TypeValidationEventArgs.cs
- Effect.cs
- FixedFindEngine.cs
- Unit.cs
- ThreadExceptionDialog.cs
- DataControlFieldCollection.cs
- TextBox.cs
- MailDefinition.cs
- PositiveTimeSpanValidator.cs
- Int64.cs
- CornerRadiusConverter.cs
- XmlILIndex.cs
- RSAPKCS1SignatureDeformatter.cs
- HtmlWindow.cs
- WorkflowMarkupSerializer.cs
- OracleException.cs
- Repeater.cs
- ByteKeyFrameCollection.cs
- COM2ComponentEditor.cs
- ActivityExecutorDelegateInfo.cs
- EdmComplexPropertyAttribute.cs
- XmlSchemaProviderAttribute.cs
- FixedTextBuilder.cs
- Mappings.cs
- GPStream.cs
- RegexNode.cs
- AutomationEventArgs.cs
- RegisteredHiddenField.cs
- PropertyInfoSet.cs
- SmiEventStream.cs
- TrustLevel.cs
- RightsManagementInformation.cs
- RowsCopiedEventArgs.cs
- X509SecurityTokenParameters.cs
- ArraySubsetEnumerator.cs
- RepeatButtonAutomationPeer.cs
- Processor.cs
- MSAAWinEventWrap.cs
- CommandDevice.cs
- PathSegmentCollection.cs
- DateTimeOffset.cs
- RegistryKey.cs
- TextInfo.cs
- ResourceAttributes.cs
- ValueSerializerAttribute.cs
- SystemFonts.cs
- ProcessHostServerConfig.cs
- SessionStateSection.cs
- MissingMethodException.cs