Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / ndp / fx / src / xsp / System / Web / Extensions / Script / Services / RestHandlerFactory.cs / 1 / 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
- HtmlEmptyTagControlBuilder.cs
- XPathConvert.cs
- SupportsEventValidationAttribute.cs
- QueryableDataSourceEditData.cs
- SqlStream.cs
- ApplicationInfo.cs
- XmlSchemaAnnotated.cs
- XmlFormatReaderGenerator.cs
- Invariant.cs
- TouchPoint.cs
- _NegotiateClient.cs
- DecimalConstantAttribute.cs
- RijndaelManagedTransform.cs
- UIElement.cs
- XamlFigureLengthSerializer.cs
- Accessors.cs
- DynamicQueryableWrapper.cs
- PrimitiveSchema.cs
- FileNotFoundException.cs
- HttpCookiesSection.cs
- ClientSession.cs
- DateTimeUtil.cs
- MatrixConverter.cs
- ControlIdConverter.cs
- ToolStripOverflowButton.cs
- GenericPrincipal.cs
- ParameterToken.cs
- EntityClientCacheEntry.cs
- StyleXamlParser.cs
- TextBoxBaseDesigner.cs
- DelegateSerializationHolder.cs
- InstanceDataCollection.cs
- IChannel.cs
- OwnerDrawPropertyBag.cs
- LookupNode.cs
- TraceLog.cs
- KnownTypesHelper.cs
- XhtmlBasicCalendarAdapter.cs
- ReadOnlyTernaryTree.cs
- ToolStripDropDownClosedEventArgs.cs
- FontWeight.cs
- SizeChangedEventArgs.cs
- FilteredAttributeCollection.cs
- UIntPtr.cs
- Highlights.cs
- BmpBitmapDecoder.cs
- PersistenceParticipant.cs
- Track.cs
- RenderCapability.cs
- SessionEndingCancelEventArgs.cs
- ArgumentNullException.cs
- DataColumnMappingCollection.cs
- ToolStripContainer.cs
- DocComment.cs
- MaskedTextBoxDesignerActionList.cs
- PageParser.cs
- XmlDataImplementation.cs
- TextRange.cs
- StrokeCollection2.cs
- EtwTrackingParticipant.cs
- TimeSpan.cs
- StylusButtonEventArgs.cs
- XsdBuilder.cs
- _ContextAwareResult.cs
- ResourceExpressionEditor.cs
- DateTimePicker.cs
- SynchronizationLockException.cs
- Row.cs
- PersistenceProviderElement.cs
- AddInContractAttribute.cs
- AsymmetricKeyExchangeDeformatter.cs
- BaseProcessor.cs
- SelectionHighlightInfo.cs
- IdentityValidationException.cs
- Overlapped.cs
- ShortcutKeysEditor.cs
- StrokeNode.cs
- ExeContext.cs
- ToolStripStatusLabel.cs
- DataProtection.cs
- TextViewSelectionProcessor.cs
- ClientConfigPaths.cs
- DecryptedHeader.cs
- ResourceAttributes.cs
- BuilderInfo.cs
- ManipulationInertiaStartingEventArgs.cs
- PersistChildrenAttribute.cs
- Buffer.cs
- BackgroundFormatInfo.cs
- CaseExpr.cs
- StrokeNodeData.cs
- UnionExpr.cs
- ActivationServices.cs
- ValueUnavailableException.cs
- DiagnosticEventProvider.cs
- DependencyPropertyHelper.cs
- XmlHierarchyData.cs
- SerializationEventsCache.cs
- QueryResult.cs
- _NegotiateClient.cs