Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / xsp / System / Web / UI / PageHandlerFactory.cs / 1 / 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*/, true /*noAssert*/) 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*/, true /*noAssert*/) 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
- Add.cs
- MyContact.cs
- SelectedDatesCollection.cs
- IndicFontClient.cs
- CommandID.cs
- PageCatalogPartDesigner.cs
- RuleSettingsCollection.cs
- DataGridViewDataErrorEventArgs.cs
- ExecutionContext.cs
- _ConnectOverlappedAsyncResult.cs
- ListViewSortEventArgs.cs
- CollectionChangeEventArgs.cs
- RadioButtonStandardAdapter.cs
- TreeIterators.cs
- UserControlBuildProvider.cs
- CodeGotoStatement.cs
- ManagementNamedValueCollection.cs
- EastAsianLunisolarCalendar.cs
- Utils.cs
- SchemaExporter.cs
- ConfigUtil.cs
- CompoundFileIOPermission.cs
- AutoScrollHelper.cs
- ManagedIStream.cs
- RegexGroupCollection.cs
- _AutoWebProxyScriptHelper.cs
- DesignerUtility.cs
- Util.cs
- CallContext.cs
- TagMapCollection.cs
- InternalCache.cs
- ErrorTableItemStyle.cs
- COAUTHIDENTITY.cs
- ClientScriptManagerWrapper.cs
- PkcsUtils.cs
- FirewallWrapper.cs
- AsyncDataRequest.cs
- CryptoApi.cs
- DrawingCollection.cs
- WindowsNonControl.cs
- WebPartVerbCollection.cs
- Stackframe.cs
- WindowsIdentity.cs
- LocalizationComments.cs
- PerformanceCounterPermissionAttribute.cs
- AttributedMetaModel.cs
- DeflateInput.cs
- DeleteHelper.cs
- MonthCalendar.cs
- WebScriptMetadataMessage.cs
- TimeSpanMinutesConverter.cs
- TransformPatternIdentifiers.cs
- PropertyPath.cs
- ProcessHost.cs
- InternalResources.cs
- HTTPNotFoundHandler.cs
- HwndStylusInputProvider.cs
- DocumentPageView.cs
- HScrollProperties.cs
- Ref.cs
- TableLayoutColumnStyleCollection.cs
- TargetInvocationException.cs
- JournalNavigationScope.cs
- Int64AnimationUsingKeyFrames.cs
- CodeMemberMethod.cs
- ThemeDirectoryCompiler.cs
- TextModifierScope.cs
- XmlMtomReader.cs
- DesignerAttributeInfo.cs
- RelationshipConverter.cs
- PrintPreviewGraphics.cs
- CommentEmitter.cs
- TransportSecurityProtocolFactory.cs
- VisualProxy.cs
- PlainXmlWriter.cs
- HttpPostLocalhostServerProtocol.cs
- CodeTypeReference.cs
- FixedSOMPage.cs
- FileInfo.cs
- BulletDecorator.cs
- TextBox.cs
- NextPreviousPagerField.cs
- OrderedEnumerableRowCollection.cs
- Input.cs
- ListControl.cs
- ExtentJoinTreeNode.cs
- CodeDelegateCreateExpression.cs
- Utilities.cs
- DesignerGenericWebPart.cs
- Int16Storage.cs
- ListViewUpdateEventArgs.cs
- GroupByExpressionRewriter.cs
- OutputBuffer.cs
- AlignmentYValidation.cs
- BaseTemplateParser.cs
- SelectionRangeConverter.cs
- TemplateNameScope.cs
- UnsafeNativeMethods.cs
- RegisteredHiddenField.cs
- CompositeFontParser.cs