markus / MarkusLogview / MARKUS_LOGVIEW / Startup.cs @ 2b1f30fe
이력 | 보기 | 이력해설 | 다운로드 (853 Bytes)
1 | 84578b97 | djkim | using System; |
---|---|---|---|
2 | using System.Threading.Tasks; |
||
3 | using Microsoft.AspNet.SignalR; |
||
4 | using Microsoft.Owin; |
||
5 | using Microsoft.Owin.Cors; |
||
6 | using Owin; |
||
7 | |||
8 | [assembly: OwinStartup(typeof(MARKUS_LOGVIEW.Startup))] |
||
9 | |||
10 | namespace MARKUS_LOGVIEW |
||
11 | { |
||
12 | public class Startup |
||
13 | { |
||
14 | public void Configuration(IAppBuilder app) |
||
15 | { |
||
16 | // 응용 프로그램을 구성하는 방법에 대한 자세한 내용은 https://go.microsoft.com/fwlink/?LinkID=316888을 참조하세요. |
||
17 | //var hubConfig = new HubConfiguration() { EnableDetailedErrors = true }; |
||
18 | //app.MapSignalR(hubConfig); |
||
19 | app.Map("/signalr", map => |
||
20 | { |
||
21 | map.UseCors(CorsOptions.AllowAll); |
||
22 | var hubConfiguration = new HubConfiguration { }; |
||
23 | map.RunSignalR(hubConfiguration); |
||
24 | }); |
||
25 | |||
26 | } |
||
27 | } |
||
28 | } |