Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / 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
- OracleMonthSpan.cs
- UserControlAutomationPeer.cs
- QuaternionRotation3D.cs
- WebBrowserSiteBase.cs
- EventLogPermissionEntry.cs
- SeverityFilter.cs
- ThemeDirectoryCompiler.cs
- RecommendedAsConfigurableAttribute.cs
- ServiceDesigner.xaml.cs
- ArrangedElementCollection.cs
- GZipDecoder.cs
- RouteItem.cs
- XmlSchemaAppInfo.cs
- DateTimeConverter2.cs
- DataGridViewCellLinkedList.cs
- MatrixTransform3D.cs
- PropertyFilter.cs
- LocalValueEnumerator.cs
- ProtocolsSection.cs
- HtmlLabelAdapter.cs
- AnonymousIdentificationSection.cs
- NamespaceInfo.cs
- BamlResourceContent.cs
- Triplet.cs
- ExpandSegmentCollection.cs
- TargetControlTypeAttribute.cs
- WindowsFormsSynchronizationContext.cs
- precedingsibling.cs
- BitmapSizeOptions.cs
- GeometryConverter.cs
- ClientData.cs
- WebPartDescription.cs
- Proxy.cs
- ScriptControlDescriptor.cs
- SeekStoryboard.cs
- StringValidatorAttribute.cs
- ViewBase.cs
- WindowsListViewGroupHelper.cs
- ObjectConverter.cs
- EntryPointNotFoundException.cs
- ListViewItem.cs
- ServiceOperationDetailViewControl.cs
- ReadOnlyCollection.cs
- NativeActivityTransactionContext.cs
- TextTabProperties.cs
- EdgeProfileValidation.cs
- GuidConverter.cs
- OdbcDataAdapter.cs
- BamlStream.cs
- Monitor.cs
- BitmapEditor.cs
- CodePageUtils.cs
- ColorConvertedBitmap.cs
- SqlAggregateChecker.cs
- DriveNotFoundException.cs
- TextBoxBase.cs
- StylusOverProperty.cs
- DeferredTextReference.cs
- CacheVirtualItemsEvent.cs
- EntityDesignerDataSourceView.cs
- QueryContinueDragEvent.cs
- FontNameEditor.cs
- OuterGlowBitmapEffect.cs
- HttpClientCertificate.cs
- FullTextState.cs
- ConvertEvent.cs
- ConstantSlot.cs
- GlobalProxySelection.cs
- HttpWebResponse.cs
- BinaryReader.cs
- ProcessInfo.cs
- HtmlInputControl.cs
- List.cs
- CompilerError.cs
- GridViewCellAutomationPeer.cs
- CustomAttributeFormatException.cs
- WindowsAltTab.cs
- TreeNode.cs
- OleDbError.cs
- SingletonConnectionReader.cs
- HttpConfigurationContext.cs
- WaitHandle.cs
- TextTreeObjectNode.cs
- CodeDomSerializerException.cs
- HashMembershipCondition.cs
- AndCondition.cs
- util.cs
- LinkButton.cs
- SystemWebSectionGroup.cs
- FactoryId.cs
- PrinterUnitConvert.cs
- CodeDefaultValueExpression.cs
- SqlInternalConnectionSmi.cs
- ViewStateException.cs
- SiteIdentityPermission.cs
- DefaultAssemblyResolver.cs
- XmlSchemaAnnotation.cs
- ConstraintStruct.cs
- SymmetricKey.cs
- SchemaImporter.cs