topical media & game development

talk show tell print

#mobile-application-03-DerbyNamesService-DerbyNamesService-Global.asax.cs / cs



  using System;
  using System.ServiceModel.Activation;
  using System.Web;
  using System.Web.Routing;
  
  namespace DerbyNamesService
  {
      public class Global : HttpApplication
      {
  
          protected void Application_Start(object sender, EventArgs e)
          {
              RegisterRoutes(RouteTable.Routes);
  
          }
  
          private void RegisterRoutes(RouteCollection routes)
          {
              routes.Add(new ServiceRoute("RollerDerby", new WebServiceHostFactory(), typeof(DerbyService)));
          }
  
          protected void Session_Start(object sender, EventArgs e)
          {
  
          }
  
          protected void Application_BeginRequest(object sender, EventArgs e)
          {
  
          }
  
          protected void Application_AuthenticateRequest(object sender, EventArgs e)
          {
  
          }
  
          protected void Application_Error(object sender, EventArgs e)
          {
  
          }
  
          protected void Session_End(object sender, EventArgs e)
          {
  
          }
  
          protected void Application_End(object sender, EventArgs e)
          {
  
          }
      }
  }


(C) Æliens 04/09/2009

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.