- <script src="@Url.Content("~/signalr/hubs")" type="text/javascript"></script>
- public class Dashboard : Hub, IDisconnect, IConnected
- {
- }
- $(function () {
- $.connection.Dashboard.start(function () {
- });
- });
- TypeError: $.connection.Dashboard is undefined
- [HubName("Dashboard")]
- public class Dashboard : Hub, IDisconnect, IConnected
- {
- }