15 lines
236 B
VB.net
15 lines
236 B
VB.net
Imports System.Web.Http
|
|
|
|
Public Class WebApiApplication
|
|
Inherits System.Web.HttpApplication
|
|
|
|
Protected Sub Application_Start()
|
|
GlobalConfiguration.Configure(AddressOf WebApiConfig.Register)
|
|
|
|
|
|
End Sub
|
|
|
|
|
|
|
|
End Class
|