Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / Configuration / HostingPreferredMapPath.cs / 2 / HostingPreferredMapPath.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.Web.Configuration {
using System.Configuration;
using System.Collections;
using System.Globalization;
using System.Xml;
using System.Text;
using System.Web.Util;
using System.Web.UI;
using System.IO;
using System.Web.Hosting;
//
// IConfigMapPath that uses the HostingEnvironment's IConfigMapPath for
// paths that it maps, and uses the web server IConfigMapPath for
// all other paths.
//
// This allows us to use mappings for an app using SimpleApplicationHost,
// while still correctly mapping paths outside the app.
//
class HostingPreferredMapPath : IConfigMapPath {
IConfigMapPath _iisConfigMapPath;
IConfigMapPath _hostingConfigMapPath;
internal static IConfigMapPath GetInstance() {
IConfigMapPath iisConfigMapPath = IISMapPath.GetInstance();
IConfigMapPath hostingConfigMapPath = HostingEnvironment.ConfigMapPath;
// Only delegate if the types implementing IConfigMapPath are different.
if (hostingConfigMapPath == null || iisConfigMapPath.GetType() == hostingConfigMapPath.GetType())
return iisConfigMapPath;
return new HostingPreferredMapPath(iisConfigMapPath, hostingConfigMapPath);
}
HostingPreferredMapPath(IConfigMapPath iisConfigMapPath, IConfigMapPath hostingConfigMapPath) {
_iisConfigMapPath = iisConfigMapPath;
_hostingConfigMapPath = hostingConfigMapPath;
}
public string GetMachineConfigFilename() {
string filename = _hostingConfigMapPath.GetMachineConfigFilename();
if (string.IsNullOrEmpty(filename)) {
filename = _iisConfigMapPath.GetMachineConfigFilename();
}
return filename;
}
public string GetRootWebConfigFilename() {
string filename = _hostingConfigMapPath.GetRootWebConfigFilename();
if (string.IsNullOrEmpty(filename)) {
filename = _iisConfigMapPath.GetRootWebConfigFilename();
}
return filename;
}
public void GetPathConfigFilename(
string siteID, string path, out string directory, out string baseName) {
_hostingConfigMapPath.GetPathConfigFilename(siteID, path, out directory, out baseName);
if (string.IsNullOrEmpty(directory)) {
_iisConfigMapPath.GetPathConfigFilename(siteID, path, out directory, out baseName);
}
}
public void GetDefaultSiteNameAndID(out string siteName, out string siteID) {
_hostingConfigMapPath.GetDefaultSiteNameAndID(out siteName, out siteID);
if (string.IsNullOrEmpty(siteID)) {
_iisConfigMapPath.GetDefaultSiteNameAndID(out siteName, out siteID);
}
}
public void ResolveSiteArgument(string siteArgument, out string siteName, out string siteID) {
_hostingConfigMapPath.ResolveSiteArgument(siteArgument, out siteName, out siteID);
if (string.IsNullOrEmpty(siteID)) {
_iisConfigMapPath.ResolveSiteArgument(siteArgument, out siteName, out siteID);
}
}
public string MapPath(string siteID, string path) {
string physicalPath = _hostingConfigMapPath.MapPath(siteID, path);
if (string.IsNullOrEmpty(physicalPath)) {
physicalPath = _iisConfigMapPath.MapPath(siteID, path);
}
return physicalPath;
}
public string GetAppPathForPath(string siteID, string path) {
string appPath = _hostingConfigMapPath.GetAppPathForPath(siteID, path);
if (appPath == null) {
appPath = _iisConfigMapPath.GetAppPathForPath(siteID, path);
}
return appPath;
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.Web.Configuration {
using System.Configuration;
using System.Collections;
using System.Globalization;
using System.Xml;
using System.Text;
using System.Web.Util;
using System.Web.UI;
using System.IO;
using System.Web.Hosting;
//
// IConfigMapPath that uses the HostingEnvironment's IConfigMapPath for
// paths that it maps, and uses the web server IConfigMapPath for
// all other paths.
//
// This allows us to use mappings for an app using SimpleApplicationHost,
// while still correctly mapping paths outside the app.
//
class HostingPreferredMapPath : IConfigMapPath {
IConfigMapPath _iisConfigMapPath;
IConfigMapPath _hostingConfigMapPath;
internal static IConfigMapPath GetInstance() {
IConfigMapPath iisConfigMapPath = IISMapPath.GetInstance();
IConfigMapPath hostingConfigMapPath = HostingEnvironment.ConfigMapPath;
// Only delegate if the types implementing IConfigMapPath are different.
if (hostingConfigMapPath == null || iisConfigMapPath.GetType() == hostingConfigMapPath.GetType())
return iisConfigMapPath;
return new HostingPreferredMapPath(iisConfigMapPath, hostingConfigMapPath);
}
HostingPreferredMapPath(IConfigMapPath iisConfigMapPath, IConfigMapPath hostingConfigMapPath) {
_iisConfigMapPath = iisConfigMapPath;
_hostingConfigMapPath = hostingConfigMapPath;
}
public string GetMachineConfigFilename() {
string filename = _hostingConfigMapPath.GetMachineConfigFilename();
if (string.IsNullOrEmpty(filename)) {
filename = _iisConfigMapPath.GetMachineConfigFilename();
}
return filename;
}
public string GetRootWebConfigFilename() {
string filename = _hostingConfigMapPath.GetRootWebConfigFilename();
if (string.IsNullOrEmpty(filename)) {
filename = _iisConfigMapPath.GetRootWebConfigFilename();
}
return filename;
}
public void GetPathConfigFilename(
string siteID, string path, out string directory, out string baseName) {
_hostingConfigMapPath.GetPathConfigFilename(siteID, path, out directory, out baseName);
if (string.IsNullOrEmpty(directory)) {
_iisConfigMapPath.GetPathConfigFilename(siteID, path, out directory, out baseName);
}
}
public void GetDefaultSiteNameAndID(out string siteName, out string siteID) {
_hostingConfigMapPath.GetDefaultSiteNameAndID(out siteName, out siteID);
if (string.IsNullOrEmpty(siteID)) {
_iisConfigMapPath.GetDefaultSiteNameAndID(out siteName, out siteID);
}
}
public void ResolveSiteArgument(string siteArgument, out string siteName, out string siteID) {
_hostingConfigMapPath.ResolveSiteArgument(siteArgument, out siteName, out siteID);
if (string.IsNullOrEmpty(siteID)) {
_iisConfigMapPath.ResolveSiteArgument(siteArgument, out siteName, out siteID);
}
}
public string MapPath(string siteID, string path) {
string physicalPath = _hostingConfigMapPath.MapPath(siteID, path);
if (string.IsNullOrEmpty(physicalPath)) {
physicalPath = _iisConfigMapPath.MapPath(siteID, path);
}
return physicalPath;
}
public string GetAppPathForPath(string siteID, string path) {
string appPath = _hostingConfigMapPath.GetAppPathForPath(siteID, path);
if (appPath == null) {
appPath = _iisConfigMapPath.GetAppPathForPath(siteID, path);
}
return appPath;
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WebServiceResponseDesigner.cs
- GenericWebPart.cs
- GridViewRowEventArgs.cs
- MeasurementDCInfo.cs
- RequestStatusBarUpdateEventArgs.cs
- DbConvert.cs
- OpCodes.cs
- EditorPartChrome.cs
- PersonalizationDictionary.cs
- CustomErrorsSectionWrapper.cs
- DBDataPermission.cs
- TableLayoutStyle.cs
- DetailsViewUpdateEventArgs.cs
- XmlSignatureManifest.cs
- TreePrinter.cs
- TextSchema.cs
- LocalizedNameDescriptionPair.cs
- SkinBuilder.cs
- Rfc2898DeriveBytes.cs
- SelectionRangeConverter.cs
- EventMappingSettings.cs
- BinaryMessageFormatter.cs
- TransformerInfo.cs
- TraceEventCache.cs
- VarRefManager.cs
- DataGridViewRowEventArgs.cs
- ViewManager.cs
- CollectionBuilder.cs
- XamlGridLengthSerializer.cs
- ServiceChannelManager.cs
- XmlSchemaCompilationSettings.cs
- DataGridViewLinkCell.cs
- BitmapEffectDrawing.cs
- ProtocolsConfigurationHandler.cs
- SchemaContext.cs
- MatcherBuilder.cs
- IIS7WorkerRequest.cs
- XmlQueryCardinality.cs
- SortDescription.cs
- FileLevelControlBuilderAttribute.cs
- CompilationLock.cs
- DbInsertCommandTree.cs
- coordinatorfactory.cs
- RandomNumberGenerator.cs
- XamlTemplateSerializer.cs
- DesignTimeSiteMapProvider.cs
- ClickablePoint.cs
- WindowsSpinner.cs
- StyleTypedPropertyAttribute.cs
- HtmlTextArea.cs
- ProviderConnectionPointCollection.cs
- AutoGeneratedFieldProperties.cs
- ExpressionNormalizer.cs
- AssociationSet.cs
- XmlSchemaException.cs
- WindowsEditBoxRange.cs
- GenericRootAutomationPeer.cs
- MenuItemAutomationPeer.cs
- FilterEventArgs.cs
- Overlapped.cs
- NativeMethods.cs
- WebPartCollection.cs
- WebRequestModuleElement.cs
- ToolStripGripRenderEventArgs.cs
- AssemblyAssociatedContentFileAttribute.cs
- MetadataPropertyCollection.cs
- CompilerInfo.cs
- Slider.cs
- PeerPresenceInfo.cs
- SectionXmlInfo.cs
- CurrentTimeZone.cs
- PropertyValue.cs
- XmlWrappingReader.cs
- AlgoModule.cs
- HostingEnvironmentException.cs
- MachineKeySection.cs
- SslStream.cs
- _TransmitFileOverlappedAsyncResult.cs
- SystemEvents.cs
- XmlSchemaIdentityConstraint.cs
- QueryOptionExpression.cs
- MemoryPressure.cs
- NullableDecimalSumAggregationOperator.cs
- WindowCollection.cs
- TreeNodeStyleCollection.cs
- RectangleGeometry.cs
- XPathMessageFilter.cs
- VisualStateGroup.cs
- SQLBinaryStorage.cs
- CodeSnippetExpression.cs
- IApplicationTrustManager.cs
- CookieHandler.cs
- UseLicense.cs
- ThreadExceptionEvent.cs
- FilterEventArgs.cs
- PassportPrincipal.cs
- PropertyManager.cs
- TextStore.cs
- DataSourceGeneratorException.cs
- DataServiceHost.cs