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