Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Hosting / SimpleApplicationHost.cs / 1305376 / 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
- HelpFileFileNameEditor.cs
- WebPart.cs
- ReachBasicContext.cs
- HtmlMeta.cs
- XmlHierarchicalEnumerable.cs
- UserPreferenceChangingEventArgs.cs
- ChildDocumentBlock.cs
- AlignmentYValidation.cs
- ResourceType.cs
- XmlSerializationReader.cs
- AssociationType.cs
- MgmtConfigurationRecord.cs
- StyleHelper.cs
- ClientConfigurationHost.cs
- DataGridColumn.cs
- RequestNavigateEventArgs.cs
- AttributeExtensions.cs
- FrameworkRichTextComposition.cs
- MultipartContentParser.cs
- XmlSchemaSimpleContentExtension.cs
- PropertyNames.cs
- GACIdentityPermission.cs
- VectorAnimationBase.cs
- MouseBinding.cs
- MemoryRecordBuffer.cs
- EncryptedType.cs
- SingleObjectCollection.cs
- BitmapCache.cs
- DBDataPermissionAttribute.cs
- BaseTransportHeaders.cs
- TypeCodeDomSerializer.cs
- OutputWindow.cs
- RequiredFieldValidator.cs
- AssemblyNameProxy.cs
- BuilderPropertyEntry.cs
- ListView.cs
- InfoCardHelper.cs
- PathTooLongException.cs
- FileLoadException.cs
- MethodCallConverter.cs
- RedBlackList.cs
- CounterSample.cs
- EncryptedType.cs
- ObjectConverter.cs
- TableChangeProcessor.cs
- ReadOnlyDictionary.cs
- IncrementalReadDecoders.cs
- ResourcesGenerator.cs
- XmlEncoding.cs
- IDReferencePropertyAttribute.cs
- ReadOnlyDataSource.cs
- OleDbCommand.cs
- CryptoStream.cs
- PageThemeCodeDomTreeGenerator.cs
- ImageDrawing.cs
- SharedStatics.cs
- TreeViewImageKeyConverter.cs
- DataGridParentRows.cs
- XsltConvert.cs
- TreeBuilderXamlTranslator.cs
- DeclarativeConditionsCollection.cs
- ServiceMoniker.cs
- DataControlFieldHeaderCell.cs
- DesignerWithHeader.cs
- Monitor.cs
- ChannelManagerService.cs
- ObjectIDGenerator.cs
- XmlSchemaInclude.cs
- FilterEventArgs.cs
- TiffBitmapEncoder.cs
- EventRoute.cs
- PersonalizationState.cs
- FieldNameLookup.cs
- TabControlAutomationPeer.cs
- Currency.cs
- PerformanceCounterCategory.cs
- RowToParametersTransformer.cs
- MsdtcClusterUtils.cs
- Classification.cs
- StreamedFramingRequestChannel.cs
- CheckBoxFlatAdapter.cs
- DependencyPropertyConverter.cs
- InkCollectionBehavior.cs
- DataTableReaderListener.cs
- WebServiceResponseDesigner.cs
- ExpressionPrefixAttribute.cs
- MetabaseServerConfig.cs
- TextBoxRenderer.cs
- MappingModelBuildProvider.cs
- TranslateTransform3D.cs
- ExpressionDumper.cs
- LocalBuilder.cs
- InputReportEventArgs.cs
- WindowsListViewItemCheckBox.cs
- NotSupportedException.cs
- CopyAttributesAction.cs
- ListViewUpdateEventArgs.cs
- SplitterCancelEvent.cs
- BamlBinaryReader.cs
- RegexInterpreter.cs