Mercurial > silverbladetech
annotate SilverlightAsyncRestWcf/SilverlightAsyncRestWcf.Web/Global.asax.cs @ 121:8f94475d3146 tip
final code
author | stevenh7776 |
---|---|
date | Thu, 31 May 2012 15:35:26 +0100 |
parents | fa4ba8943048 |
children |
rev | line source |
---|---|
117 | 1 using System; |
2 using System.ServiceModel.Activation; | |
3 using System.Web; | |
4 using System.Web.Routing; | |
5 using SilverlightAsyncRestWcf.Services; | |
6 | |
7 namespace SilverlightAsyncRestWcf.Web | |
8 { | |
9 public class Global : HttpApplication | |
10 { | |
11 protected void Application_Start(object sender, EventArgs e) | |
12 { | |
118 | 13 RouteTable.Routes.Add(new ServiceRoute("services", new WebServiceHostFactory(), typeof(CarService))); |
117 | 14 } |
15 } | |
16 } |