Skip to content

Commit 098adcf

Browse files
Add Scheduler SignalR demo. Fix #4048
1 parent 5dc086b commit 098adcf

File tree

97 files changed

+88305
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+88305
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#Binding to SignalR
2+
3+
This example demonstrates real-time push-notifications from SignalR(v2) with local hub. To see the real-time updates:
4+
5+
1) Start the project and open the home page.
6+
2) Open the page in another browser window.
7+
3) Create, update or destroy Scheduler items.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 2012
4+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SignalRLocalHub", "SignalRLocalHub\SignalRLocalHub.csproj", "{742D4958-3961-4A90-AF8C-CFF110559981}"
5+
EndProject
6+
Global
7+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
8+
Debug|Any CPU = Debug|Any CPU
9+
Release|Any CPU = Release|Any CPU
10+
EndGlobalSection
11+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
12+
{742D4958-3961-4A90-AF8C-CFF110559981}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13+
{742D4958-3961-4A90-AF8C-CFF110559981}.Debug|Any CPU.Build.0 = Debug|Any CPU
14+
{742D4958-3961-4A90-AF8C-CFF110559981}.Release|Any CPU.ActiveCfg = Release|Any CPU
15+
{742D4958-3961-4A90-AF8C-CFF110559981}.Release|Any CPU.Build.0 = Release|Any CPU
16+
EndGlobalSection
17+
GlobalSection(SolutionProperties) = preSolution
18+
HideSolutionNode = FALSE
19+
EndGlobalSection
20+
EndGlobal
6.56 MB
Binary file not shown.
3.06 MB
Binary file not shown.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
using Owin;
2+
using Microsoft.Owin;
3+
using System;
4+
using System.Collections.Generic;
5+
using System.Linq;
6+
using System.Web;
7+
8+
[assembly: OwinStartup(typeof(SignalRLocalHub.Startup))]
9+
namespace SignalRLocalHub
10+
{
11+
public class Startup
12+
{
13+
public void Configuration(IAppBuilder app)
14+
{
15+
app.MapSignalR();
16+
}
17+
}
18+
}

0 commit comments

Comments
 (0)