Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / Configuration / serverconfig.cs / 1 / serverconfig.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Configuration { using System.Configuration; using System.Collections; using System.Globalization; using System.Text; using System.Threading; using System.Web.Util; using System.Web.Hosting; using System.Web.Caching; using System.Web.Compilation; using Microsoft.Win32; // // Abstracts differences between config retreived from IIS 6 metabase // and config retreived from new IIS7 configuration system. // static internal class ServerConfig { static int s_iisMajorVersion = 0; internal static bool UseMetabase { get { if (s_iisMajorVersion == 0) { int version; try { object ver = Registry.GetValue("HKEY_LOCAL_MACHINE\\Software\\Microsoft\\InetStp", "MajorVersion", 0); version = (ver != null) ? (int) ver : -1; } catch (ArgumentException) { // Ignore ArgumentException from Registry.GetValue. This may indicate that the key does not exist, i.e. IIS not installed version = -1; // Key not found } Interlocked.CompareExchange(ref s_iisMajorVersion, version, 0); } return s_iisMajorVersion <= 6; } } static internal IServerConfig GetInstance() { // IIS 7 bits on <= IIS 6: use the metabase if (UseMetabase) { return MetabaseServerConfig.GetInstance(); } return ProcessHostServerConfig.GetInstance(); } // // Return true in cases where web server configuration should be used // to resolve paths. // static int s_useServerConfig = -1; static internal bool UseServerConfig { get { if (s_useServerConfig == -1) { int useServerConfig = 0; // Must use web server config if there is no hosting environment if (!HostingEnvironment.IsHosted) { useServerConfig = 1; } // Hosting environment is the web server else if (HostingEnvironment.ApplicationHost is ISAPIApplicationHost) { useServerConfig = 1; } // Hosting environment is the web server else if (HostingEnvironment.IsUnderIISProcess && !BuildManagerHost.InClientBuildManager) { useServerConfig = 1; } Interlocked.CompareExchange(ref s_useServerConfig, useServerConfig, -1); } return s_useServerConfig == 1; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Configuration { using System.Configuration; using System.Collections; using System.Globalization; using System.Text; using System.Threading; using System.Web.Util; using System.Web.Hosting; using System.Web.Caching; using System.Web.Compilation; using Microsoft.Win32; // // Abstracts differences between config retreived from IIS 6 metabase // and config retreived from new IIS7 configuration system. // static internal class ServerConfig { static int s_iisMajorVersion = 0; internal static bool UseMetabase { get { if (s_iisMajorVersion == 0) { int version; try { object ver = Registry.GetValue("HKEY_LOCAL_MACHINE\\Software\\Microsoft\\InetStp", "MajorVersion", 0); version = (ver != null) ? (int) ver : -1; } catch (ArgumentException) { // Ignore ArgumentException from Registry.GetValue. This may indicate that the key does not exist, i.e. IIS not installed version = -1; // Key not found } Interlocked.CompareExchange(ref s_iisMajorVersion, version, 0); } return s_iisMajorVersion <= 6; } } static internal IServerConfig GetInstance() { // IIS 7 bits on <= IIS 6: use the metabase if (UseMetabase) { return MetabaseServerConfig.GetInstance(); } return ProcessHostServerConfig.GetInstance(); } // // Return true in cases where web server configuration should be used // to resolve paths. // static int s_useServerConfig = -1; static internal bool UseServerConfig { get { if (s_useServerConfig == -1) { int useServerConfig = 0; // Must use web server config if there is no hosting environment if (!HostingEnvironment.IsHosted) { useServerConfig = 1; } // Hosting environment is the web server else if (HostingEnvironment.ApplicationHost is ISAPIApplicationHost) { useServerConfig = 1; } // Hosting environment is the web server else if (HostingEnvironment.IsUnderIISProcess && !BuildManagerHost.InClientBuildManager) { useServerConfig = 1; } Interlocked.CompareExchange(ref s_useServerConfig, useServerConfig, -1); } return s_useServerConfig == 1; } } } } // 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
- WindowsGrip.cs
- InternalPolicyElement.cs
- CustomError.cs
- FormView.cs
- ConstantCheck.cs
- InputElement.cs
- ServicePointManager.cs
- ScriptDescriptor.cs
- CommandID.cs
- WebPartDeleteVerb.cs
- XPathDocumentIterator.cs
- HtmlListAdapter.cs
- CalculatedColumn.cs
- RedistVersionInfo.cs
- SHA256Managed.cs
- InputBindingCollection.cs
- DiscoveryClientReferences.cs
- X509Utils.cs
- DocumentSequenceHighlightLayer.cs
- NameValuePair.cs
- ToolStripDropDownClosedEventArgs.cs
- StackBuilderSink.cs
- DbConnectionInternal.cs
- ListSortDescription.cs
- CharKeyFrameCollection.cs
- QuerySelectOp.cs
- RoleBoolean.cs
- NameHandler.cs
- ConsoleEntryPoint.cs
- StringAnimationBase.cs
- AutomationFocusChangedEventArgs.cs
- EndOfStreamException.cs
- VisualCollection.cs
- TextStore.cs
- HostProtectionException.cs
- ConfigurationSectionGroup.cs
- CircleEase.cs
- StylusDevice.cs
- Pens.cs
- ErrorView.xaml.cs
- StringDictionaryCodeDomSerializer.cs
- ByteStreamGeometryContext.cs
- BaseCodePageEncoding.cs
- ErrorStyle.cs
- DependencyPropertyDescriptor.cs
- SerializationInfoEnumerator.cs
- PageContent.cs
- Normalization.cs
- PartDesigner.cs
- AssemblySettingAttributes.cs
- ProtectedConfiguration.cs
- DataPointer.cs
- SqlDeflator.cs
- IndexOutOfRangeException.cs
- _LocalDataStore.cs
- Control.cs
- OrderByQueryOptionExpression.cs
- Hash.cs
- XmlnsDefinitionAttribute.cs
- Assert.cs
- EndpointDispatcher.cs
- LineGeometry.cs
- ImpersonateTokenRef.cs
- ControlBindingsCollection.cs
- PointValueSerializer.cs
- ClientUtils.cs
- ApplicationSecurityInfo.cs
- LexicalChunk.cs
- HeaderedItemsControl.cs
- RequestQueue.cs
- PassportAuthenticationEventArgs.cs
- ConnectionManagementElement.cs
- RemotingConfiguration.cs
- HorizontalAlignConverter.cs
- HttpEncoder.cs
- QilLoop.cs
- ReadOnlyHierarchicalDataSourceView.cs
- PingReply.cs
- WindowVisualStateTracker.cs
- Rule.cs
- ResourceManagerWrapper.cs
- SqlCacheDependencyDatabaseCollection.cs
- ISSmlParser.cs
- FormatSettings.cs
- MetadataException.cs
- Verify.cs
- WebMessageBodyStyleHelper.cs
- BasicDesignerLoader.cs
- XsdBuilder.cs
- Security.cs
- Pkcs9Attribute.cs
- CreateUserWizardAutoFormat.cs
- InfoCardRequestException.cs
- WebServiceParameterData.cs
- MsmqOutputChannel.cs
- MasterPage.cs
- DefaultBinder.cs
- ChangesetResponse.cs
- TakeQueryOptionExpression.cs
- CmsInterop.cs