Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / Hosting / ApplicationHost.cs / 2 / ApplicationHost.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Hosting { using System; using System.IO; using System.Collections; using System.Globalization; using System.Runtime.InteropServices; using System.Runtime.Remoting; using System.Web; using System.Web.Configuration; using System.Web.Util; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class ApplicationHost { private ApplicationHost() { } /* * Creates new app domain for hosting of ASP.NET apps with a * user defined 'host' object in it. The host is needed to make * cross-domain calls to process requests in the host's app domain */ ///[To be supplied.] ////// [SecurityPermission(SecurityAction.Demand, Unrestricted=true)] public static Object CreateApplicationHost(Type hostType, String virtualDir, String physicalDir) { #if !FEATURE_PAL // FEATURE_PAL does not require PlatformID.Win32NT if (Environment.OSVersion.Platform != PlatformID.Win32NT) throw new PlatformNotSupportedException(SR.GetString(SR.RequiresNT)); #else // !FEATURE_PAL // FEATURE_PAL #endif // !FEATURE_PAL if (!StringUtil.StringEndsWith(physicalDir, Path.DirectorySeparatorChar)) physicalDir = physicalDir + Path.DirectorySeparatorChar; ApplicationManager appManager = ApplicationManager.GetApplicationManager(); String appId = (String.Concat(virtualDir, physicalDir).GetHashCode()).ToString("x"); ObjectHandle h = appManager.CreateInstanceInNewWorkerAppDomain( hostType, appId, VirtualPath.CreateNonRelative(virtualDir), physicalDir); return h.Unwrap(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ //[To be supplied.] ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Hosting { using System; using System.IO; using System.Collections; using System.Globalization; using System.Runtime.InteropServices; using System.Runtime.Remoting; using System.Web; using System.Web.Configuration; using System.Web.Util; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class ApplicationHost { private ApplicationHost() { } /* * Creates new app domain for hosting of ASP.NET apps with a * user defined 'host' object in it. The host is needed to make * cross-domain calls to process requests in the host's app domain */ ///[To be supplied.] ////// [SecurityPermission(SecurityAction.Demand, Unrestricted=true)] public static Object CreateApplicationHost(Type hostType, String virtualDir, String physicalDir) { #if !FEATURE_PAL // FEATURE_PAL does not require PlatformID.Win32NT if (Environment.OSVersion.Platform != PlatformID.Win32NT) throw new PlatformNotSupportedException(SR.GetString(SR.RequiresNT)); #else // !FEATURE_PAL // FEATURE_PAL #endif // !FEATURE_PAL if (!StringUtil.StringEndsWith(physicalDir, Path.DirectorySeparatorChar)) physicalDir = physicalDir + Path.DirectorySeparatorChar; ApplicationManager appManager = ApplicationManager.GetApplicationManager(); String appId = (String.Concat(virtualDir, physicalDir).GetHashCode()).ToString("x"); ObjectHandle h = appManager.CreateInstanceInNewWorkerAppDomain( hostType, appId, VirtualPath.CreateNonRelative(virtualDir), physicalDir); return h.Unwrap(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.[To be supplied.] ///
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MultiByteCodec.cs
- DataGridViewTextBoxCell.cs
- XPathBinder.cs
- HttpProtocolImporter.cs
- TextServicesDisplayAttribute.cs
- ParentUndoUnit.cs
- GlyphsSerializer.cs
- COM2ExtendedUITypeEditor.cs
- OdbcConnectionStringbuilder.cs
- DisplayMemberTemplateSelector.cs
- AccessibilityApplicationManager.cs
- ShaderRenderModeValidation.cs
- ConvertTextFrag.cs
- DataGridComponentEditor.cs
- AnnotationStore.cs
- CanonicalFontFamilyReference.cs
- DataGridTable.cs
- EntityExpressionVisitor.cs
- Brush.cs
- ResponseStream.cs
- ImageSource.cs
- ViewStateModeByIdAttribute.cs
- WindowsGraphics.cs
- SafeThreadHandle.cs
- ArrangedElementCollection.cs
- TemplatedMailWebEventProvider.cs
- DetailsViewUpdateEventArgs.cs
- UIElementParagraph.cs
- TailPinnedEventArgs.cs
- CodeNamespace.cs
- TextRunCacheImp.cs
- Dynamic.cs
- TextServicesCompartmentContext.cs
- SchemaSetCompiler.cs
- DataGridViewCellPaintingEventArgs.cs
- CoreSwitches.cs
- DesignerWebPartChrome.cs
- OracleInternalConnection.cs
- SoapHeaderAttribute.cs
- DiscoveryReferences.cs
- ColorTransformHelper.cs
- ParallelEnumerableWrapper.cs
- TransformerInfoCollection.cs
- PrintDialog.cs
- WebConfigurationHostFileChange.cs
- Nullable.cs
- _ListenerAsyncResult.cs
- OfTypeExpression.cs
- AccessControlEntry.cs
- TimeoutHelper.cs
- BCryptHashAlgorithm.cs
- Stylus.cs
- IsolatedStorageFilePermission.cs
- TypeElementCollection.cs
- DataSourceControlBuilder.cs
- DragStartedEventArgs.cs
- DesignerCategoryAttribute.cs
- ControlUtil.cs
- HiddenFieldPageStatePersister.cs
- Int64.cs
- Viewport3DVisual.cs
- DataBoundLiteralControl.cs
- MemoryMappedViewAccessor.cs
- RequestQueryParser.cs
- ProxyAttribute.cs
- DocumentViewerAutomationPeer.cs
- VarRefManager.cs
- RangeValueProviderWrapper.cs
- ContextBase.cs
- Image.cs
- CurrentTimeZone.cs
- RepeatInfo.cs
- SchemaCollectionPreprocessor.cs
- XmlStringTable.cs
- SymLanguageVendor.cs
- RelationshipType.cs
- WeakRefEnumerator.cs
- TypeConverters.cs
- ListBoxItem.cs
- RangeBase.cs
- BamlRecords.cs
- ToolStripDropDownMenu.cs
- IpcChannelHelper.cs
- LineVisual.cs
- HttpCachePolicy.cs
- XmlDataSource.cs
- WebPartTransformerAttribute.cs
- RowToParametersTransformer.cs
- DropSourceBehavior.cs
- PerformanceCountersElement.cs
- EventLogPermissionEntry.cs
- ScriptReferenceEventArgs.cs
- DataGridCaption.cs
- ClassicBorderDecorator.cs
- AppDomainManager.cs
- DynamicValueConverter.cs
- AnnotationHighlightLayer.cs
- ArraySegment.cs
- XmlTextReaderImpl.cs
- Debugger.cs