Sha256: d08cd23665ba38f734a76349be77924a4262ac83030059bb9e026c88defb09e1

Contents?: true

Size: 1.04 KB

Versions: 8

Compression:

Stored size: 1.04 KB

Contents

using System;
using System.Collections.Generic;
using System.Data.Entity;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.SessionState;

namespace RubyODataService
{
    public class Global : System.Web.HttpApplication
    {

        protected void Application_Start(object sender, EventArgs e)
        {
            Database.SetInitializer(new DropCreateDatabaseAlways<RubyODataContext>());
        }

        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)
        {

        }
    }
}

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
ruby_odata-0.2.0.beta1 test/RubyODataService/RubyODataService/Global.asax.cs
ruby_odata-0.1.6 test/RubyODataService/RubyODataService/Global.asax.cs
ruby_odata-0.1.5 test/RubyODataService/RubyODataService/Global.asax.cs
ruby_odata-0.1.4 test/RubyODataService/RubyODataService/Global.asax.cs
ruby_odata-0.1.3 test/RubyODataService/RubyODataService/Global.asax.cs
ruby_odata-0.1.2 test/RubyODataService/RubyODataService/Global.asax.cs
ruby_odata-0.1.1 test/RubyODataService/RubyODataService/Global.asax.cs
ruby_odata-0.1.0 test/RubyODataService/RubyODataService/Global.asax.cs