Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / Hosting / SimpleApplicationHost.cs / 1 / SimpleApplicationHost.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Hosting { using System; using System.Collections; using System.Configuration; using System.Diagnostics; using System.Globalization; using System.Runtime.InteropServices; using System.Security.Permissions; using System.Web; using System.Web.Configuration; using System.Web.UI; using System.Web.Util; using Microsoft.Win32; using Debug = System.Web.Util.Debug; internal class SimpleApplicationHost : MarshalByRefObject, IApplicationHost { private VirtualPath _appVirtualPath; private String _appPhysicalPath; internal SimpleApplicationHost(VirtualPath virtualPath, string physicalPath) { if (String.IsNullOrEmpty(physicalPath)) throw ExceptionUtil.ParameterNullOrEmpty("physicalPath"); // Throw if the physical path is not canonical, to prevent potential // security issues (VSWhidbey 418125) if (FileUtil.IsSuspiciousPhysicalPath(physicalPath)) { throw ExceptionUtil.ParameterInvalid(physicalPath); } _appVirtualPath = virtualPath; _appPhysicalPath = StringUtil.StringEndsWith(physicalPath, "\\") ? physicalPath : physicalPath + "\\"; } public override Object InitializeLifetimeService() { return null; // never expire lease } // IApplicationHost implementation public string GetVirtualPath() { return _appVirtualPath.VirtualPathString; } String IApplicationHost.GetPhysicalPath() { return _appPhysicalPath; } IConfigMapPathFactory IApplicationHost.GetConfigMapPathFactory() { return new SimpleConfigMapPathFactory(); } IntPtr IApplicationHost.GetConfigToken() { return IntPtr.Zero; } String IApplicationHost.GetSiteName() { return WebConfigurationHost.DefaultSiteName; } String IApplicationHost.GetSiteID() { return WebConfigurationHost.DefaultSiteID; } public void MessageReceived() { // nothing } } [Serializable()] internal class SimpleConfigMapPathFactory : IConfigMapPathFactory { IConfigMapPath IConfigMapPathFactory.Create(string virtualPath, string physicalPath) { WebConfigurationFileMap webFileMap = new WebConfigurationFileMap(); VirtualPath vpath = VirtualPath.Create(virtualPath); // Application path webFileMap.VirtualDirectories.Add(vpath.VirtualPathStringNoTrailingSlash, new VirtualDirectoryMapping(physicalPath, true)); // Client script file path webFileMap.VirtualDirectories.Add( HttpRuntime.AspClientScriptVirtualPath, new VirtualDirectoryMapping(HttpRuntime.AspClientScriptPhysicalPathInternal, false)); return new UserMapPath(webFileMap); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Hosting { using System; using System.Collections; using System.Configuration; using System.Diagnostics; using System.Globalization; using System.Runtime.InteropServices; using System.Security.Permissions; using System.Web; using System.Web.Configuration; using System.Web.UI; using System.Web.Util; using Microsoft.Win32; using Debug = System.Web.Util.Debug; internal class SimpleApplicationHost : MarshalByRefObject, IApplicationHost { private VirtualPath _appVirtualPath; private String _appPhysicalPath; internal SimpleApplicationHost(VirtualPath virtualPath, string physicalPath) { if (String.IsNullOrEmpty(physicalPath)) throw ExceptionUtil.ParameterNullOrEmpty("physicalPath"); // Throw if the physical path is not canonical, to prevent potential // security issues (VSWhidbey 418125) if (FileUtil.IsSuspiciousPhysicalPath(physicalPath)) { throw ExceptionUtil.ParameterInvalid(physicalPath); } _appVirtualPath = virtualPath; _appPhysicalPath = StringUtil.StringEndsWith(physicalPath, "\\") ? physicalPath : physicalPath + "\\"; } public override Object InitializeLifetimeService() { return null; // never expire lease } // IApplicationHost implementation public string GetVirtualPath() { return _appVirtualPath.VirtualPathString; } String IApplicationHost.GetPhysicalPath() { return _appPhysicalPath; } IConfigMapPathFactory IApplicationHost.GetConfigMapPathFactory() { return new SimpleConfigMapPathFactory(); } IntPtr IApplicationHost.GetConfigToken() { return IntPtr.Zero; } String IApplicationHost.GetSiteName() { return WebConfigurationHost.DefaultSiteName; } String IApplicationHost.GetSiteID() { return WebConfigurationHost.DefaultSiteID; } public void MessageReceived() { // nothing } } [Serializable()] internal class SimpleConfigMapPathFactory : IConfigMapPathFactory { IConfigMapPath IConfigMapPathFactory.Create(string virtualPath, string physicalPath) { WebConfigurationFileMap webFileMap = new WebConfigurationFileMap(); VirtualPath vpath = VirtualPath.Create(virtualPath); // Application path webFileMap.VirtualDirectories.Add(vpath.VirtualPathStringNoTrailingSlash, new VirtualDirectoryMapping(physicalPath, true)); // Client script file path webFileMap.VirtualDirectories.Add( HttpRuntime.AspClientScriptVirtualPath, new VirtualDirectoryMapping(HttpRuntime.AspClientScriptPhysicalPathInternal, false)); return new UserMapPath(webFileMap); } } } // 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
- GlyphsSerializer.cs
- _Win32.cs
- DocumentAutomationPeer.cs
- CustomSignedXml.cs
- Int64KeyFrameCollection.cs
- httpapplicationstate.cs
- TraceFilter.cs
- WorkflowInstanceExtensionCollection.cs
- XmlDesignerDataSourceView.cs
- ClientTargetSection.cs
- TextHintingModeValidation.cs
- StateMachineHistory.cs
- BackgroundWorker.cs
- PerfCounters.cs
- StickyNoteHelper.cs
- XPathPatternParser.cs
- Listbox.cs
- XamlTypeMapper.cs
- AndCondition.cs
- NonParentingControl.cs
- EntityDesignerDataSourceView.cs
- StorageModelBuildProvider.cs
- Utility.cs
- ISAPIWorkerRequest.cs
- SelectedDatesCollection.cs
- UrlPath.cs
- FaultReasonText.cs
- ExclusiveCanonicalizationTransform.cs
- InfoCardSchemas.cs
- DrawingContextWalker.cs
- Focus.cs
- FragmentQuery.cs
- BaseProcessor.cs
- TreeNodeMouseHoverEvent.cs
- SimplePropertyEntry.cs
- Internal.cs
- AvTrace.cs
- AnnotationHelper.cs
- WindowsScrollBarBits.cs
- ApplyImportsAction.cs
- HiddenField.cs
- DateTimeParse.cs
- Column.cs
- SyntaxCheck.cs
- SecurityKeyUsage.cs
- SystemColorTracker.cs
- WCFServiceClientProxyGenerator.cs
- XmlReflectionMember.cs
- EndPoint.cs
- RuntimeTrackingProfile.cs
- Fx.cs
- InfoCardMasterKey.cs
- SoapBinding.cs
- RawTextInputReport.cs
- RankException.cs
- DynamicMetaObject.cs
- XmlDocumentViewSchema.cs
- WindowPattern.cs
- MatrixAnimationUsingKeyFrames.cs
- XmlUtil.cs
- DataGridViewImageCell.cs
- XamlClipboardData.cs
- Accessible.cs
- CodeConditionStatement.cs
- BulletDecorator.cs
- base64Transforms.cs
- ServiceHttpHandlerFactory.cs
- SkinBuilder.cs
- Run.cs
- WriteTimeStream.cs
- TextSelection.cs
- SystemIcmpV6Statistics.cs
- WebPartsPersonalizationAuthorization.cs
- Rules.cs
- DefaultAuthorizationContext.cs
- BooleanFunctions.cs
- GPPOINTF.cs
- WebSysDefaultValueAttribute.cs
- BuildProviderAppliesToAttribute.cs
- FormViewInsertEventArgs.cs
- _NetRes.cs
- GetPageCompletedEventArgs.cs
- _CacheStreams.cs
- AccessibleObject.cs
- Shape.cs
- XmlCDATASection.cs
- DesignTimeParseData.cs
- EntityDesignerBuildProvider.cs
- _ConnectOverlappedAsyncResult.cs
- HttpCookieCollection.cs
- AnimationTimeline.cs
- HwndTarget.cs
- ComponentChangedEvent.cs
- LogicalCallContext.cs
- AnnotationComponentChooser.cs
- LinqDataSourceSelectEventArgs.cs
- ExtensionFile.cs
- StylusPointDescription.cs
- IpcClientManager.cs
- BinHexDecoder.cs