├── README.md ├── Web.sln ├── Web ├── App_Start │ └── WebApiConfig.cs ├── Authorize │ └── WebApiAttribute.cs ├── DLL │ ├── Antlr3.Runtime.dll │ ├── Microsoft.AspNet.Identity.Core.dll │ ├── Microsoft.AspNet.Identity.EntityFramework.dll │ ├── Microsoft.AspNet.Identity.Owin.dll │ ├── Microsoft.AspNet.SignalR.Core.dll │ ├── Microsoft.AspNet.SignalR.SystemWeb.dll │ ├── Newtonsoft.Json.dll │ ├── System.Net.Http.Formatting.dll │ ├── System.Web.Helpers.dll │ ├── System.Web.Http.WebHost.dll │ ├── System.Web.Http.dll │ ├── System.Web.Mvc.dll │ ├── System.Web.Optimization.dll │ ├── System.Web.Razor.dll │ ├── System.Web.WebPages.Deployment.dll │ ├── System.Web.WebPages.Razor.dll │ ├── System.Web.WebPages.dll │ ├── WebGrease.dll │ └── log4net.dll ├── Global.asax ├── Global.asax.cs ├── Properties │ └── AssemblyInfo.cs ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── Web.csproj └── Web.csproj.user └── WebApi ├── Controller ├── Auth │ └── AuthenticationApiController.cs ├── Login │ └── LoginController.cs └── _Base │ ├── BaseApiController.cs │ ├── BaseResult.cs │ └── Json6Helper.cs ├── Properties └── AssemblyInfo.cs └── WebApi.csproj /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/README.md -------------------------------------------------------------------------------- /Web.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/Web.sln -------------------------------------------------------------------------------- /Web/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/Web/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /Web/Authorize/WebApiAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/Web/Authorize/WebApiAttribute.cs -------------------------------------------------------------------------------- /Web/DLL/Antlr3.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/Web/DLL/Antlr3.Runtime.dll -------------------------------------------------------------------------------- /Web/DLL/Microsoft.AspNet.Identity.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/Web/DLL/Microsoft.AspNet.Identity.Core.dll -------------------------------------------------------------------------------- /Web/DLL/Microsoft.AspNet.Identity.EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/Web/DLL/Microsoft.AspNet.Identity.EntityFramework.dll -------------------------------------------------------------------------------- /Web/DLL/Microsoft.AspNet.Identity.Owin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/Web/DLL/Microsoft.AspNet.Identity.Owin.dll -------------------------------------------------------------------------------- /Web/DLL/Microsoft.AspNet.SignalR.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/Web/DLL/Microsoft.AspNet.SignalR.Core.dll -------------------------------------------------------------------------------- /Web/DLL/Microsoft.AspNet.SignalR.SystemWeb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/Web/DLL/Microsoft.AspNet.SignalR.SystemWeb.dll -------------------------------------------------------------------------------- /Web/DLL/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/Web/DLL/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Web/DLL/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/Web/DLL/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /Web/DLL/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/Web/DLL/System.Web.Helpers.dll -------------------------------------------------------------------------------- /Web/DLL/System.Web.Http.WebHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/Web/DLL/System.Web.Http.WebHost.dll -------------------------------------------------------------------------------- /Web/DLL/System.Web.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/Web/DLL/System.Web.Http.dll -------------------------------------------------------------------------------- /Web/DLL/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/Web/DLL/System.Web.Mvc.dll -------------------------------------------------------------------------------- /Web/DLL/System.Web.Optimization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/Web/DLL/System.Web.Optimization.dll -------------------------------------------------------------------------------- /Web/DLL/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/Web/DLL/System.Web.Razor.dll -------------------------------------------------------------------------------- /Web/DLL/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/Web/DLL/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /Web/DLL/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/Web/DLL/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /Web/DLL/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/Web/DLL/System.Web.WebPages.dll -------------------------------------------------------------------------------- /Web/DLL/WebGrease.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/Web/DLL/WebGrease.dll -------------------------------------------------------------------------------- /Web/DLL/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/Web/DLL/log4net.dll -------------------------------------------------------------------------------- /Web/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/Web/Global.asax -------------------------------------------------------------------------------- /Web/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/Web/Global.asax.cs -------------------------------------------------------------------------------- /Web/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/Web/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Web/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/Web/Web.Debug.config -------------------------------------------------------------------------------- /Web/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/Web/Web.Release.config -------------------------------------------------------------------------------- /Web/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/Web/Web.config -------------------------------------------------------------------------------- /Web/Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/Web/Web.csproj -------------------------------------------------------------------------------- /Web/Web.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/Web/Web.csproj.user -------------------------------------------------------------------------------- /WebApi/Controller/Auth/AuthenticationApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/WebApi/Controller/Auth/AuthenticationApiController.cs -------------------------------------------------------------------------------- /WebApi/Controller/Login/LoginController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/WebApi/Controller/Login/LoginController.cs -------------------------------------------------------------------------------- /WebApi/Controller/_Base/BaseApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/WebApi/Controller/_Base/BaseApiController.cs -------------------------------------------------------------------------------- /WebApi/Controller/_Base/BaseResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/WebApi/Controller/_Base/BaseResult.cs -------------------------------------------------------------------------------- /WebApi/Controller/_Base/Json6Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/WebApi/Controller/_Base/Json6Helper.cs -------------------------------------------------------------------------------- /WebApi/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/WebApi/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WebApi/WebApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/WebApi/HEAD/WebApi/WebApi.csproj --------------------------------------------------------------------------------