Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / PageHandlerFactory.cs / 1305376 / PageHandlerFactory.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * Handler Factory implementation for Page files * * Copyright (c) 1999 Microsoft Corporation */ namespace System.Web.UI { using System.Runtime.Serialization.Formatters; using System.IO; using System.Security.Permissions; using System.Web.Compilation; using System.Web.Util; using Debug=System.Web.Util.Debug; /* * Handler Factory implementation for ASP.NET files */ [PermissionSet(SecurityAction.LinkDemand, Unrestricted = true)] [PermissionSet(SecurityAction.InheritanceDemand, Unrestricted=true)] public class PageHandlerFactory : IHttpHandlerFactory2 { private bool _isInheritedInstance; protected internal PageHandlerFactory() { // Check whether this is the exact PageHandlerFactory, or a derived class _isInheritedInstance = (GetType() != typeof(PageHandlerFactory)); } public virtual IHttpHandler GetHandler(HttpContext context, string requestType, string virtualPath, string path) { Debug.Trace("PageHandlerFactory", "PageHandlerFactory: " + virtualPath); // This should never get called in ISAPI mode but currently is in integrated mode // Debug.Assert(false); return GetHandlerHelper(context, requestType, VirtualPath.CreateNonRelative(virtualPath), path); } IHttpHandler IHttpHandlerFactory2.GetHandler(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) { // If it's a derived class, we must call the old (less efficient) GetHandler, in // case it was overriden if (_isInheritedInstance) { return GetHandler(context, requestType, virtualPath.VirtualPathString, physicalPath); } return GetHandlerHelper(context, requestType, virtualPath, physicalPath); } public virtual void ReleaseHandler(IHttpHandler handler) { } private IHttpHandler GetHandlerHelper(HttpContext context, string requestType, VirtualPath virtualPath, string physicalPath) { Page page = BuildManager.CreateInstanceFromVirtualPath( virtualPath, typeof(Page), context, true /*allowCrossApp*/) as Page; if (page == null) return null; page.TemplateControlVirtualPath = virtualPath; return page; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * Handler Factory implementation for Page files * * Copyright (c) 1999 Microsoft Corporation */ namespace System.Web.UI { using System.Runtime.Serialization.Formatters; using System.IO; using System.Security.Permissions; using System.Web.Compilation; using System.Web.Util; using Debug=System.Web.Util.Debug; /* * Handler Factory implementation for ASP.NET files */ [PermissionSet(SecurityAction.LinkDemand, Unrestricted = true)] [PermissionSet(SecurityAction.InheritanceDemand, Unrestricted=true)] public class PageHandlerFactory : IHttpHandlerFactory2 { private bool _isInheritedInstance; protected internal PageHandlerFactory() { // Check whether this is the exact PageHandlerFactory, or a derived class _isInheritedInstance = (GetType() != typeof(PageHandlerFactory)); } public virtual IHttpHandler GetHandler(HttpContext context, string requestType, string virtualPath, string path) { Debug.Trace("PageHandlerFactory", "PageHandlerFactory: " + virtualPath); // This should never get called in ISAPI mode but currently is in integrated mode // Debug.Assert(false); return GetHandlerHelper(context, requestType, VirtualPath.CreateNonRelative(virtualPath), path); } IHttpHandler IHttpHandlerFactory2.GetHandler(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) { // If it's a derived class, we must call the old (less efficient) GetHandler, in // case it was overriden if (_isInheritedInstance) { return GetHandler(context, requestType, virtualPath.VirtualPathString, physicalPath); } return GetHandlerHelper(context, requestType, virtualPath, physicalPath); } public virtual void ReleaseHandler(IHttpHandler handler) { } private IHttpHandler GetHandlerHelper(HttpContext context, string requestType, VirtualPath virtualPath, string physicalPath) { Page page = BuildManager.CreateInstanceFromVirtualPath( virtualPath, typeof(Page), context, true /*allowCrossApp*/) as Page; if (page == null) return null; page.TemplateControlVirtualPath = virtualPath; return page; } } } // 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
- ReadWriteSpinLock.cs
- NullableDecimalSumAggregationOperator.cs
- TextElementCollectionHelper.cs
- ListViewHitTestInfo.cs
- SqlDataSourceConfigureSelectPanel.cs
- RuleProcessor.cs
- SoapSchemaMember.cs
- DataControlImageButton.cs
- SystemIPv4InterfaceProperties.cs
- HttpResponse.cs
- LZCodec.cs
- LazyTextWriterCreator.cs
- ProxyWebPartConnectionCollection.cs
- RtfToXamlReader.cs
- SystemException.cs
- DropTarget.cs
- FragmentNavigationEventArgs.cs
- PopOutPanel.cs
- ResourceKey.cs
- MemoryStream.cs
- WorkflowClientDeliverMessageWrapper.cs
- XXXOnTypeBuilderInstantiation.cs
- _DigestClient.cs
- ProfilePropertySettingsCollection.cs
- ModulesEntry.cs
- hwndwrapper.cs
- ConfigurationLocation.cs
- ClientTargetSection.cs
- ObjectDisposedException.cs
- PropertyRecord.cs
- SynchronizingStream.cs
- ScrollViewer.cs
- TextInfo.cs
- XmlElementCollection.cs
- DataChangedEventManager.cs
- AttributedMetaModel.cs
- Path.cs
- MetadataItem_Static.cs
- AnonymousIdentificationModule.cs
- PageParser.cs
- SiteMapProvider.cs
- BitmapSource.cs
- AmbiguousMatchException.cs
- ConfigurationProperty.cs
- MarshalByRefObject.cs
- RowUpdatedEventArgs.cs
- DataServiceException.cs
- DesignerAttributeInfo.cs
- EncoderNLS.cs
- metadatamappinghashervisitor.hashsourcebuilder.cs
- ReadWriteSpinLock.cs
- BamlReader.cs
- OlePropertyStructs.cs
- SafeRightsManagementSessionHandle.cs
- DataTableTypeConverter.cs
- ResolvedKeyFrameEntry.cs
- HwndTarget.cs
- SimpleMailWebEventProvider.cs
- DataGridViewRowErrorTextNeededEventArgs.cs
- LogicalExpressionTypeConverter.cs
- AssemblyAttributes.cs
- WebHeaderCollection.cs
- ScrollPatternIdentifiers.cs
- ServiceDesigner.xaml.cs
- EventLogTraceListener.cs
- DBParameter.cs
- SchemaImporter.cs
- SQLRoleProvider.cs
- EncoderNLS.cs
- ReadOnlyCollection.cs
- XmlKeywords.cs
- LiteralControl.cs
- Screen.cs
- DbUpdateCommandTree.cs
- MethodImplAttribute.cs
- BamlTreeNode.cs
- ItemsControl.cs
- CanExecuteRoutedEventArgs.cs
- VisualStyleTypesAndProperties.cs
- _ChunkParse.cs
- ExtensionDataObject.cs
- AmbientLight.cs
- ButtonDesigner.cs
- COM2ColorConverter.cs
- UpdateRecord.cs
- DetailsViewInsertEventArgs.cs
- MemoryFailPoint.cs
- PolyBezierSegmentFigureLogic.cs
- XamlClipboardData.cs
- ControlUtil.cs
- IImplicitResourceProvider.cs
- CodeExpressionCollection.cs
- DiffuseMaterial.cs
- Translator.cs
- Axis.cs
- MatchSingleFxEngineOpcode.cs
- XmlSchemaValidationException.cs
- BlurBitmapEffect.cs
- SQLString.cs
- FreezableCollection.cs