Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / DefaultHttpHandler.cs / 1 / DefaultHttpHandler.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web { using System; using System.Collections; using System.Collections.Specialized; using System.Globalization; using System.Text; using System.Web.Util; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class DefaultHttpHandler : IHttpAsyncHandler { private HttpContext _context; private NameValueCollection _executeUrlHeaders; public DefaultHttpHandler() { } protected HttpContext Context { get { return _context; } } // headers to provide to execute url protected NameValueCollection ExecuteUrlHeaders { get { if (_executeUrlHeaders == null && _context != null) { _executeUrlHeaders = new NameValueCollection(_context.Request.Headers); } return _executeUrlHeaders; } } // called when we know a precondition for calling // execute URL has been violated public virtual void OnExecuteUrlPreconditionFailure() { // do nothing - the derived class might throw } // add a virtual method that provides the request target for the EXECUTE_URL call // if return null, the default calls EXECUTE_URL for the default target public virtual String OverrideExecuteUrlPath() { return null; } internal static bool IsClassicAspRequest(String filePath) { return StringUtil.StringEndsWithIgnoreCase(filePath, ".asp"); } public virtual IAsyncResult BeginProcessRequest(HttpContext context, AsyncCallback callback, Object state) { _context = context; HttpResponse response = _context.Response; if (response.CanExecuteUrlForEntireResponse) { // use ExecuteUrl String path = OverrideExecuteUrlPath(); if (path != null && !HttpRuntime.IsFullTrust) { // validate that an untrusted derived classes (not in GAC) // didn't set the path to a place that CAS wouldn't let it access if (!this.GetType().Assembly.GlobalAssemblyCache) { HttpRuntime.CheckFilePermission(context.Request.MapPath(path)); } } return response.BeginExecuteUrlForEntireResponse(path, _executeUrlHeaders, callback, state); } else { // let the base class throw if it doesn't want static files handler OnExecuteUrlPreconditionFailure(); // use static file handler _context = null; // don't keep request data alive in sync case HttpRequest request = context.Request; // refuse POST requests if (request.HttpVerb == HttpVerb.POST) { throw new HttpException(405, SR.GetString(SR.Method_not_allowed, request.HttpMethod, request.Path)); } // refuse .asp requests if (IsClassicAspRequest(request.FilePath)) { throw new HttpException(403, SR.GetString(SR.Path_forbidden, request.Path)); } // default to static file handler StaticFileHandler.ProcessRequestInternal(context); // return async result indicating completion return new HttpAsyncResult(callback, state, true, null, null); } } public virtual void EndProcessRequest(IAsyncResult result) { if (_context != null) { HttpResponse response = _context.Response; _context = null; response.EndExecuteUrlForEntireResponse(result); } } public virtual void ProcessRequest(HttpContext context) { // this handler should never be called synchronously throw new InvalidOperationException(SR.GetString(SR.Cannot_call_defaulthttphandler_sync)); } public virtual bool IsReusable { get { return false; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WebServicesInteroperability.cs
- XmlSchemaSimpleContent.cs
- ColumnHeader.cs
- Rotation3DAnimationUsingKeyFrames.cs
- Button.cs
- HiddenField.cs
- GiveFeedbackEventArgs.cs
- SqlBulkCopyColumnMapping.cs
- SystemNetworkInterface.cs
- Utility.cs
- HttpChannelHelper.cs
- SettingsPropertyValueCollection.cs
- TextDecoration.cs
- EpmCustomContentDeSerializer.cs
- ContextStack.cs
- Variant.cs
- AnimationClockResource.cs
- FloatSumAggregationOperator.cs
- SecurityKeyIdentifier.cs
- DecoderBestFitFallback.cs
- TreeIterators.cs
- StateItem.cs
- DbDataRecord.cs
- XmlChildEnumerator.cs
- IIS7WorkerRequest.cs
- BookmarkCallbackWrapper.cs
- SingleObjectCollection.cs
- VisualTarget.cs
- EventDescriptorCollection.cs
- Cursor.cs
- HelpInfo.cs
- ReadOnlyCollectionBase.cs
- ListBoxItemAutomationPeer.cs
- TerminatorSinks.cs
- DecimalConstantAttribute.cs
- SchemaCollectionPreprocessor.cs
- TreeNodeSelectionProcessor.cs
- objectresult_tresulttype.cs
- GridViewDesigner.cs
- ClientRuntimeConfig.cs
- XmlCodeExporter.cs
- _ConnectStream.cs
- WebPartCollection.cs
- InvokeHandlers.cs
- ObjectListItem.cs
- LinkUtilities.cs
- Single.cs
- TriState.cs
- HTTPNotFoundHandler.cs
- Base64Encoding.cs
- Margins.cs
- ConstraintEnumerator.cs
- ControlAdapter.cs
- DeviceContext2.cs
- SqlEnums.cs
- TraceUtility.cs
- UpdateProgress.cs
- ExpressionBindingCollection.cs
- List.cs
- StringUtil.cs
- ImageButton.cs
- WindowsAuthenticationEventArgs.cs
- CollectionBuilder.cs
- SendKeys.cs
- ChtmlImageAdapter.cs
- LogFlushAsyncResult.cs
- DataTableNewRowEvent.cs
- ControllableStoryboardAction.cs
- ExpandableObjectConverter.cs
- DataGridViewElement.cs
- OutputCacheProfile.cs
- OdbcRowUpdatingEvent.cs
- Cursor.cs
- HttpCachePolicyBase.cs
- EmulateRecognizeCompletedEventArgs.cs
- HostElement.cs
- ColorBlend.cs
- DesignerVerb.cs
- ValidationEventArgs.cs
- GlyphTypeface.cs
- SByteStorage.cs
- RightsManagementEncryptedStream.cs
- EntityDataReader.cs
- TabletDeviceInfo.cs
- TcpProcessProtocolHandler.cs
- TimerElapsedEvenArgs.cs
- SchemaEntity.cs
- Color.cs
- ContentWrapperAttribute.cs
- UIElementCollection.cs
- RelationshipDetailsRow.cs
- DeclarativeExpressionConditionDeclaration.cs
- EdmType.cs
- FieldMetadata.cs
- CodeBlockBuilder.cs
- CacheEntry.cs
- XmlText.cs
- Wizard.cs
- AnimationStorage.cs
- AddInStore.cs