Skip to content

Instantly share code, notes, and snippets.

View jeremiahredekop's full-sized avatar
😀
life is good.

Jeremiah Redekop jeremiahredekop

😀
life is good.
View GitHub Profile
@jeremiahredekop
jeremiahredekop / CustomRouteCollectionExtensions
Created October 27, 2011 20:02
weakly typed MapServiceRoute method for webapi
using System.Linq;
using Microsoft.ApplicationServer.Http;
using Microsoft.ApplicationServer.Http.Activation;
namespace System.Web.Routing
{
public static class CustomRouteCollectionExtensions
{
public static void MapServiceRoute(this RouteCollection routes, Type serviceType, string routePrefix, HttpConfiguration configuration = null, object constraints = null, bool useMethodPrefixForHttpMethod = true)
{