Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Extensions / Script / Services / RestHandlerFactory.cs / 1305376 / RestHandlerFactory.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Script.Services { internal class RestHandlerFactory : IHttpHandlerFactory { internal const string ClientProxyRequestPathInfo = "/js"; internal const string ClientDebugProxyRequestPathInfo = "/jsdebug"; public virtual IHttpHandler GetHandler(HttpContext context, string requestType, string url, string pathTranslated) { if (context == null) { throw new ArgumentNullException("context"); } if (IsClientProxyRequest(context.Request.PathInfo)) { // It's a request for client side proxies return new RestClientProxyHandler(); } else { // The request is an actual call to a server method return RestHandler.CreateHandler(context); } } public virtual void ReleaseHandler(IHttpHandler handler) { } // Detects if this is a request we want to intercept, i.e. invocation or proxy request internal static bool IsRestRequest(HttpContext context) { return IsRestMethodCall(context.Request) || IsClientProxyRequest(context.Request.PathInfo); } // Detects if this is a method invocation, i.e. webservice call or page method call internal static bool IsRestMethodCall(HttpRequest request) { return !String.IsNullOrEmpty(request.PathInfo) && (request.ContentType.StartsWith("application/json;", StringComparison.OrdinalIgnoreCase) || string.Equals(request.ContentType, "application/json", StringComparison.OrdinalIgnoreCase)); } internal static bool IsClientProxyDebugRequest(string pathInfo) { return string.Equals(pathInfo, ClientDebugProxyRequestPathInfo, StringComparison.OrdinalIgnoreCase); } internal static bool IsClientProxyRequest(string pathInfo) { return (string.Equals(pathInfo, ClientProxyRequestPathInfo, StringComparison.OrdinalIgnoreCase) || IsClientProxyDebugRequest(pathInfo)); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Script.Services { internal class RestHandlerFactory : IHttpHandlerFactory { internal const string ClientProxyRequestPathInfo = "/js"; internal const string ClientDebugProxyRequestPathInfo = "/jsdebug"; public virtual IHttpHandler GetHandler(HttpContext context, string requestType, string url, string pathTranslated) { if (context == null) { throw new ArgumentNullException("context"); } if (IsClientProxyRequest(context.Request.PathInfo)) { // It's a request for client side proxies return new RestClientProxyHandler(); } else { // The request is an actual call to a server method return RestHandler.CreateHandler(context); } } public virtual void ReleaseHandler(IHttpHandler handler) { } // Detects if this is a request we want to intercept, i.e. invocation or proxy request internal static bool IsRestRequest(HttpContext context) { return IsRestMethodCall(context.Request) || IsClientProxyRequest(context.Request.PathInfo); } // Detects if this is a method invocation, i.e. webservice call or page method call internal static bool IsRestMethodCall(HttpRequest request) { return !String.IsNullOrEmpty(request.PathInfo) && (request.ContentType.StartsWith("application/json;", StringComparison.OrdinalIgnoreCase) || string.Equals(request.ContentType, "application/json", StringComparison.OrdinalIgnoreCase)); } internal static bool IsClientProxyDebugRequest(string pathInfo) { return string.Equals(pathInfo, ClientDebugProxyRequestPathInfo, StringComparison.OrdinalIgnoreCase); } internal static bool IsClientProxyRequest(string pathInfo) { return (string.Equals(pathInfo, ClientProxyRequestPathInfo, StringComparison.OrdinalIgnoreCase) || IsClientProxyDebugRequest(pathInfo)); } } } // 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
- ExceptionUtil.cs
- StringValueSerializer.cs
- NativeMethods.cs
- UnknownBitmapEncoder.cs
- PackWebRequest.cs
- TransactionChannelFaultConverter.cs
- EncoderReplacementFallback.cs
- XmlSerializerSection.cs
- HtmlControlAdapter.cs
- DesignerAttribute.cs
- ListViewCommandEventArgs.cs
- Win32SafeHandles.cs
- RequestCacheManager.cs
- VerificationAttribute.cs
- ThrowHelper.cs
- InputMethodStateTypeInfo.cs
- InstanceBehavior.cs
- BasicHttpBindingElement.cs
- VersionPair.cs
- FacetEnabledSchemaElement.cs
- SatelliteContractVersionAttribute.cs
- HandlerMappingMemo.cs
- IdentifierService.cs
- TrackingParameters.cs
- InputLangChangeRequestEvent.cs
- SqlDataSourceParameterParser.cs
- XmlReader.cs
- ValueOfAction.cs
- TargetException.cs
- DataGridViewButtonColumn.cs
- SqlStream.cs
- DomainUpDown.cs
- ControlPaint.cs
- ChannelManagerBase.cs
- MissingMethodException.cs
- AddInAdapter.cs
- SubMenuStyleCollection.cs
- OrderedDictionary.cs
- ListViewHitTestInfo.cs
- DrawingGroupDrawingContext.cs
- CharacterBufferReference.cs
- HwndTarget.cs
- MatrixAnimationUsingKeyFrames.cs
- DrawingGroupDrawingContext.cs
- TableLayoutPanelBehavior.cs
- InfiniteIntConverter.cs
- EdmItemCollection.OcAssemblyCache.cs
- PrivateFontCollection.cs
- Profiler.cs
- NameSpaceExtractor.cs
- DragDrop.cs
- RedistVersionInfo.cs
- CallbackValidator.cs
- ObjectRef.cs
- Zone.cs
- CodeGotoStatement.cs
- DataGridViewCheckBoxCell.cs
- EventWaitHandle.cs
- ErrorHandler.cs
- InvokePattern.cs
- IdentityModelDictionary.cs
- FontNamesConverter.cs
- PermissionAttributes.cs
- DecimalFormatter.cs
- IDReferencePropertyAttribute.cs
- ConfigXmlCDataSection.cs
- XmlExpressionDumper.cs
- PreProcessor.cs
- BadImageFormatException.cs
- StateRuntime.cs
- ProviderIncompatibleException.cs
- LoginView.cs
- ServiceHttpModule.cs
- DefaultSection.cs
- ReferencedAssembly.cs
- OdbcConnectionPoolProviderInfo.cs
- TypeUtil.cs
- CssTextWriter.cs
- TemplatedMailWebEventProvider.cs
- MsmqIntegrationBindingElement.cs
- EdmItemCollection.cs
- DelimitedListTraceListener.cs
- SkinBuilder.cs
- ToolStripContentPanelRenderEventArgs.cs
- MenuStrip.cs
- ScrollItemPattern.cs
- SspiHelper.cs
- VolatileEnlistmentMultiplexing.cs
- AmbientValueAttribute.cs
- ExtentCqlBlock.cs
- PageHandlerFactory.cs
- ThicknessAnimationBase.cs
- ModelPropertyCollectionImpl.cs
- SslStream.cs
- HtmlInputSubmit.cs
- ServiceContractViewControl.cs
- ObjectListCommandsPage.cs
- RC2CryptoServiceProvider.cs
- XmlSchemaType.cs
- AddInStore.cs