3 references to IsRestMethodCall
System.Web.Extensions (3)
Handlers\ScriptModule.cs (1)
168if (app.Context.Handler is Page && RestHandlerFactory.IsRestMethodCall(request)) {
Script\Services\RestHandlerFactory.cs (1)
35return IsRestMethodCall(context.Request) || IsClientProxyRequest(context.Request.PathInfo);
UI\ScriptManager.cs (1)
591_isRestMethodCall = (Context != null) && RestHandlerFactory.IsRestMethodCall(Context.Request);