├── src ├── .vs │ └── BlazorRealTime │ │ ├── v16 │ │ ├── Server │ │ │ └── sqlite3 │ │ │ │ ├── db.lock │ │ │ │ └── storage.ide │ │ └── .suo │ │ └── DesignTimeBuild │ │ └── .dtbcache ├── BlazorRealTime.Blazor │ ├── obj │ │ ├── Debug │ │ │ └── netstandard2.1 │ │ │ │ ├── BlazorRealTime.Blazor.csproj.CopyComplete │ │ │ │ ├── BlazorRealTime.Blazor.TagHelpers.input.cache │ │ │ │ ├── staticwebassets │ │ │ │ ├── BlazorRealTime.Blazor.StaticWebAssets.Manifest.cache │ │ │ │ └── BlazorRealTime.Blazor.StaticWebAssets.xml │ │ │ │ ├── BlazorRealTime.Blazor.AssemblyInfoInputs.cache │ │ │ │ ├── BlazorRealTime.Blazor.RazorCoreGenerate.cache │ │ │ │ ├── BlazorRealTime.Blazor.RazorComponent.input.cache │ │ │ │ ├── BlazorRealTime.Blazor.RazorTargetAssemblyInfo.cache │ │ │ │ ├── BlazorRealTime.Blazor.dll │ │ │ │ ├── BlazorRealTime.Blazor.pdb │ │ │ │ ├── blazor │ │ │ │ ├── linker.descriptor.xml │ │ │ │ ├── linker │ │ │ │ │ ├── System.dll │ │ │ │ │ ├── mscorlib.dll │ │ │ │ │ ├── System.Core.dll │ │ │ │ │ ├── Mono.Security.dll │ │ │ │ │ ├── System.Net.Http.dll │ │ │ │ │ ├── System.Text.Json.dll │ │ │ │ │ ├── Microsoft.JSInterop.dll │ │ │ │ │ ├── System.IO.Pipelines.dll │ │ │ │ │ ├── BlazorRealTime.Blazor.dll │ │ │ │ │ ├── BlazorRealTime.Blazor.pdb │ │ │ │ │ ├── WebAssembly.Bindings.dll │ │ │ │ │ ├── WebAssembly.Net.Http.dll │ │ │ │ │ ├── Mono.WebAssembly.Interop.dll │ │ │ │ │ ├── Microsoft.AspNetCore.Blazor.dll │ │ │ │ │ ├── System.Text.Encodings.Web.dll │ │ │ │ │ ├── System.Threading.Channels.dll │ │ │ │ │ ├── WebAssembly.Net.WebSockets.dll │ │ │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ │ │ │ ├── Microsoft.Extensions.Logging.dll │ │ │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ │ │ ├── Microsoft.AspNetCore.Components.dll │ │ │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ │ │ ├── Microsoft.AspNetCore.Http.Features.dll │ │ │ │ │ ├── Microsoft.Extensions.Configuration.dll │ │ │ │ │ ├── Microsoft.AspNetCore.Components.Web.dll │ │ │ │ │ ├── Microsoft.AspNetCore.SignalR.Client.dll │ │ │ │ │ ├── Microsoft.AspNetCore.SignalR.Common.dll │ │ │ │ │ ├── Microsoft.AspNetCore.Blazor.HttpClient.dll │ │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ │ │ │ ├── Microsoft.AspNetCore.SignalR.Client.Core.dll │ │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ │ │ ├── Microsoft.AspNetCore.Http.Connections.Client.dll │ │ │ │ │ ├── Microsoft.AspNetCore.Http.Connections.Common.dll │ │ │ │ │ ├── Microsoft.AspNetCore.SignalR.Protocols.Json.dll │ │ │ │ │ ├── Microsoft.AspNetCore.Connections.Abstractions.dll │ │ │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ │ │ └── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ │ ├── blazor.boot.json │ │ │ │ ├── linker.output │ │ │ │ └── linker.typegranularityconfig.xml │ │ │ │ ├── BlazorRealTime.Blazor.assets.cache │ │ │ │ ├── RazorDeclaration │ │ │ │ ├── BlazorRealTime.Blazor.dll │ │ │ │ ├── BlazorRealTime.Blazor.pdb │ │ │ │ ├── _Imports.razor.g.cs │ │ │ │ ├── App.razor.g.cs │ │ │ │ ├── Shared │ │ │ │ │ ├── MainLayout.razor.g.cs │ │ │ │ │ ├── SurveyPrompt.razor.g.cs │ │ │ │ │ └── NavMenu.razor.g.cs │ │ │ │ └── Pages │ │ │ │ │ ├── Counter.razor.g.cs │ │ │ │ │ ├── FetchData.razor.g.cs │ │ │ │ │ └── Index.razor.g.cs │ │ │ │ ├── BlazorRealTime.Blazor.csprojAssemblyReference.cache │ │ │ │ ├── BlazorRealTime.Blazor.AssemblyInfo.cs │ │ │ │ └── Razor │ │ │ │ ├── _Imports.razor.g.cs │ │ │ │ ├── Shared │ │ │ │ ├── MainLayout.razor.g.cs │ │ │ │ ├── SurveyPrompt.razor.g.cs │ │ │ │ └── NavMenu.razor.g.cs │ │ │ │ ├── Pages │ │ │ │ ├── Counter.razor.g.cs │ │ │ │ ├── Index.razor.g.cs │ │ │ │ └── FetchData.razor.g.cs │ │ │ │ └── App.razor.g.cs │ │ ├── BlazorRealTime.Blazor.csproj.nuget.cache │ │ ├── BlazorRealTime.Blazor.csproj.nuget.g.targets │ │ ├── BlazorRealTime.Blazor.csproj.nuget.g.props │ │ └── BlazorRealTime.Blazor.csproj.nuget.dgspec.json │ ├── bin │ │ └── Debug │ │ │ └── netstandard2.1 │ │ │ ├── System.Memory.dll │ │ │ ├── System.Buffers.dll │ │ │ ├── System.Text.Json.dll │ │ │ ├── BlazorRealTime.Blazor.dll │ │ │ ├── BlazorRealTime.Blazor.pdb │ │ │ ├── Microsoft.JSInterop.dll │ │ │ ├── System.IO.Pipelines.dll │ │ │ ├── System.Numerics.Vectors.dll │ │ │ ├── Mono.WebAssembly.Interop.dll │ │ │ ├── System.Text.Encodings.Web.dll │ │ │ ├── System.Threading.Channels.dll │ │ │ ├── Microsoft.AspNetCore.Blazor.dll │ │ │ ├── Microsoft.Extensions.Logging.dll │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ ├── dist │ │ │ └── _framework │ │ │ │ ├── _bin │ │ │ │ ├── System.dll │ │ │ │ ├── mscorlib.dll │ │ │ │ ├── System.Core.dll │ │ │ │ ├── Mono.Security.dll │ │ │ │ ├── System.Net.Http.dll │ │ │ │ ├── System.Text.Json.dll │ │ │ │ ├── Microsoft.JSInterop.dll │ │ │ │ ├── System.IO.Pipelines.dll │ │ │ │ ├── WebAssembly.Bindings.dll │ │ │ │ ├── WebAssembly.Net.Http.dll │ │ │ │ ├── BlazorRealTime.Blazor.dll │ │ │ │ ├── BlazorRealTime.Blazor.pdb │ │ │ │ ├── Mono.WebAssembly.Interop.dll │ │ │ │ ├── System.Text.Encodings.Web.dll │ │ │ │ ├── System.Threading.Channels.dll │ │ │ │ ├── Microsoft.AspNetCore.Blazor.dll │ │ │ │ ├── WebAssembly.Net.WebSockets.dll │ │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ │ │ ├── Microsoft.Extensions.Logging.dll │ │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ │ ├── Microsoft.AspNetCore.Components.dll │ │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ │ ├── Microsoft.AspNetCore.Components.Web.dll │ │ │ │ ├── Microsoft.AspNetCore.Http.Features.dll │ │ │ │ ├── Microsoft.AspNetCore.SignalR.Client.dll │ │ │ │ ├── Microsoft.AspNetCore.SignalR.Common.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.dll │ │ │ │ ├── Microsoft.AspNetCore.Blazor.HttpClient.dll │ │ │ │ ├── Microsoft.AspNetCore.SignalR.Client.Core.dll │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ │ ├── Microsoft.AspNetCore.Connections.Abstractions.dll │ │ │ │ ├── Microsoft.AspNetCore.Http.Connections.Client.dll │ │ │ │ ├── Microsoft.AspNetCore.Http.Connections.Common.dll │ │ │ │ ├── Microsoft.AspNetCore.SignalR.Protocols.Json.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ │ └── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ │ ├── wasm │ │ │ │ └── dotnet.wasm │ │ │ │ └── blazor.boot.json │ │ │ ├── Microsoft.AspNetCore.Components.dll │ │ │ ├── Microsoft.AspNetCore.Metadata.dll │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ ├── System.ComponentModel.Annotations.dll │ │ │ ├── System.Threading.Tasks.Extensions.dll │ │ │ ├── Microsoft.AspNetCore.Authorization.dll │ │ │ ├── Microsoft.AspNetCore.Components.Web.dll │ │ │ ├── Microsoft.AspNetCore.Http.Features.dll │ │ │ ├── Microsoft.AspNetCore.SignalR.Client.dll │ │ │ ├── Microsoft.AspNetCore.SignalR.Common.dll │ │ │ ├── Microsoft.Extensions.Configuration.dll │ │ │ ├── Microsoft.AspNetCore.Blazor.HttpClient.dll │ │ │ ├── Microsoft.AspNetCore.Components.Forms.dll │ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ │ ├── Microsoft.AspNetCore.SignalR.Client.Core.dll │ │ │ ├── Microsoft.Extensions.Configuration.Binder.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ ├── Microsoft.AspNetCore.SignalR.Protocols.Json.dll │ │ │ ├── Microsoft.AspNetCore.Connections.Abstractions.dll │ │ │ ├── Microsoft.AspNetCore.Http.Connections.Client.dll │ │ │ ├── Microsoft.AspNetCore.Http.Connections.Common.dll │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ ├── BlazorRealTime.Blazor.blazor.config │ │ │ └── Properties │ │ │ └── launchSettings.json │ ├── wwwroot │ │ ├── css │ │ │ ├── open-iconic │ │ │ │ ├── font │ │ │ │ │ └── fonts │ │ │ │ │ │ ├── open-iconic.eot │ │ │ │ │ │ ├── open-iconic.otf │ │ │ │ │ │ ├── open-iconic.ttf │ │ │ │ │ │ └── open-iconic.woff │ │ │ │ ├── ICON-LICENSE │ │ │ │ ├── README.md │ │ │ │ └── FONT-LICENSE │ │ │ └── site.css │ │ ├── index.html │ │ └── sample-data │ │ │ └── weather.json │ ├── BlazorRealTime.Blazor.csproj.user │ ├── _Imports.razor │ ├── Pages │ │ ├── Counter.razor │ │ ├── FetchData.razor │ │ └── Index.razor │ ├── Shared │ │ ├── MainLayout.razor │ │ ├── SurveyPrompt.razor │ │ └── NavMenu.razor │ ├── App.razor │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── BlazorRealTime.Blazor.csproj ├── BlazorRealTime.Server │ ├── obj │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── BlazorRealTime.Server.csproj.CopyComplete │ │ │ │ ├── BlazorRealTime.Server.MvcApplicationPartsAssemblyInfo.cache │ │ │ │ ├── staticwebassets │ │ │ │ ├── BlazorRealTime.Server.StaticWebAssets.Manifest.cache │ │ │ │ └── BlazorRealTime.Server.StaticWebAssets.xml │ │ │ │ ├── BlazorRealTime.Server.AssemblyInfoInputs.cache │ │ │ │ ├── BlazorRealTime.Server.RazorTargetAssemblyInfo.cache │ │ │ │ ├── BlazorRealTime.Server.dll │ │ │ │ ├── BlazorRealTime.Server.exe │ │ │ │ ├── BlazorRealTime.Server.pdb │ │ │ │ ├── BlazorRealTime.Server.assets.cache │ │ │ │ ├── BlazorRealTime.Server.csprojAssemblyReference.cache │ │ │ │ └── BlazorRealTime.Server.AssemblyInfo.cs │ │ ├── BlazorRealTime.Server.csproj.nuget.cache │ │ ├── BlazorRealTime.Server.csproj.nuget.g.targets │ │ ├── BlazorRealTime.Server.csproj.nuget.g.props │ │ └── BlazorRealTime.Server.csproj.nuget.dgspec.json │ ├── bin │ │ └── Debug │ │ │ └── netcoreapp3.1 │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── NuGet.Frameworks.dll │ │ │ ├── BlazorRealTime.Server.dll │ │ │ ├── BlazorRealTime.Server.exe │ │ │ ├── BlazorRealTime.Server.pdb │ │ │ ├── Microsoft.CodeAnalysis.dll │ │ │ ├── System.Composition.Hosting.dll │ │ │ ├── System.Composition.Runtime.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.dll │ │ │ ├── Microsoft.CodeAnalysis.Razor.dll │ │ │ ├── System.Composition.Convention.dll │ │ │ ├── System.Composition.TypedParts.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.dll │ │ │ ├── System.Composition.AttributedModel.dll │ │ │ ├── dotnet-aspnet-codegenerator-design.dll │ │ │ ├── Microsoft.AspNetCore.Razor.Language.dll │ │ │ ├── cs │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── de │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── es │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── fr │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── it │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── ja │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── ko │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── pl │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── ru │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── tr │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── System.Net.WebSockets.WebSocketProtocol.dll │ │ │ ├── pt-BR │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.dll │ │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.dll │ │ │ ├── zh-Hans │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── zh-Hant │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Core.dll │ │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll │ │ │ ├── Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll │ │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll │ │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll │ │ │ ├── appsettings.Development.json │ │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll │ │ │ ├── appsettings.json │ │ │ ├── BlazorRealTime.Server.runtimeconfig.json │ │ │ ├── BlazorRealTime.Server.runtimeconfig.dev.json │ │ │ └── Properties │ │ │ └── launchSettings.json │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── WeatherForecast.cs │ ├── BlazorRealTime.Server.csproj │ ├── NotificationHub.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── BlazorRealTime.Server.csproj.user │ ├── Controllers │ │ ├── NotificationsController.cs │ │ └── WeatherForecastController.cs │ └── Startup.cs └── BlazorRealTime.sln └── README.md /src/.vs/BlazorRealTime/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/BlazorRealTime.Blazor.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/obj/Debug/netcoreapp3.1/BlazorRealTime.Server.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/BlazorRealTime.Blazor.TagHelpers.input.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/obj/Debug/netcoreapp3.1/BlazorRealTime.Server.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/obj/Debug/netcoreapp3.1/staticwebassets/BlazorRealTime.Server.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/staticwebassets/BlazorRealTime.Blazor.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/.vs/BlazorRealTime/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/.vs/BlazorRealTime/v16/.suo -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/BlazorRealTime.Blazor.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 2e1736b78252aba19c27adda51bd2b4d6d9047f6 2 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/BlazorRealTime.Blazor.RazorCoreGenerate.cache: -------------------------------------------------------------------------------- 1 | 72f400674dc283482bf0cd7f9a8227fceb5654d9 2 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/staticwebassets/BlazorRealTime.Blazor.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/obj/Debug/netcoreapp3.1/BlazorRealTime.Server.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | db00f9bbfbec0c752b4a9e903e54d237a163cbb0 2 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/obj/Debug/netcoreapp3.1/staticwebassets/BlazorRealTime.Server.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/BlazorRealTime.Blazor.RazorComponent.input.cache: -------------------------------------------------------------------------------- 1 | 72f400674dc283482bf0cd7f9a8227fceb5654d9 2 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/BlazorRealTime.Blazor.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 1d9d0c736fea0e5564e0fffb29dce0538dd4a3b4 2 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/obj/Debug/netcoreapp3.1/BlazorRealTime.Server.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | ed064639bda8f59effe1a9d8dca07a5f35b9bb3e 2 | -------------------------------------------------------------------------------- /src/.vs/BlazorRealTime/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/.vs/BlazorRealTime/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /src/.vs/BlazorRealTime/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/.vs/BlazorRealTime/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/System.Memory.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/System.Buffers.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/System.Text.Json.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/BlazorRealTime.Blazor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/BlazorRealTime.Blazor.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/BlazorRealTime.Blazor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/BlazorRealTime.Blazor.pdb -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.JSInterop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.JSInterop.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/System.IO.Pipelines.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/System.IO.Pipelines.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/BlazorRealTime.Blazor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/BlazorRealTime.Blazor.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/BlazorRealTime.Blazor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/BlazorRealTime.Blazor.pdb -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker.descriptor.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/System.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/System.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/wwwroot/css/open-iconic/font/fonts/open-iconic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/wwwroot/css/open-iconic/font/fonts/open-iconic.eot -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/wwwroot/css/open-iconic/font/fonts/open-iconic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/wwwroot/css/open-iconic/font/fonts/open-iconic.otf -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/BlazorRealTime.Server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/BlazorRealTime.Server.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/BlazorRealTime.Server.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/BlazorRealTime.Server.exe -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/BlazorRealTime.Server.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/BlazorRealTime.Server.pdb -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/obj/Debug/netcoreapp3.1/BlazorRealTime.Server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/obj/Debug/netcoreapp3.1/BlazorRealTime.Server.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/obj/Debug/netcoreapp3.1/BlazorRealTime.Server.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/obj/Debug/netcoreapp3.1/BlazorRealTime.Server.exe -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/obj/Debug/netcoreapp3.1/BlazorRealTime.Server.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/obj/Debug/netcoreapp3.1/BlazorRealTime.Server.pdb -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/mscorlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/mscorlib.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/wwwroot/css/open-iconic/font/fonts/open-iconic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/wwwroot/css/open-iconic/font/fonts/open-iconic.woff -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Mono.WebAssembly.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Mono.WebAssembly.Interop.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/System.Text.Encodings.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/System.Text.Encodings.Web.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/System.Threading.Channels.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/System.Threading.Channels.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/System.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/System.Core.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/System.Composition.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/System.Composition.Hosting.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/System.Composition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/System.Composition.Runtime.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.AspNetCore.Blazor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.AspNetCore.Blazor.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/System.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/System.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/wasm/dotnet.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/wasm/dotnet.wasm -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/BlazorRealTime.Blazor.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "VerUDaccesHt9l3YbqX+67OGNKs5h2Z3hT0laa4Or+cH/cxhxXJV5Yl29nIlRWMLYU1Ivrel1F5DMtS5SeHDPg==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Mono.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Mono.Security.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.Razor.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/System.Composition.Convention.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/System.Composition.TypedParts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/obj/BlazorRealTime.Server.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "dMaAb8Dg6et0rXQwquAgG4I/2ht5KgXQz6ieJN8x4fUa0im6wGWPmeWwghoBpHinjwySlLyA3LIrpaI9eK6Flw==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.AspNetCore.Components.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.AspNetCore.Components.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.AspNetCore.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.AspNetCore.Metadata.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/mscorlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/mscorlib.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/BlazorRealTime.Blazor.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/BlazorRealTime.Blazor.assets.cache -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/System.Net.Http.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/System.Text.Json.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/obj/Debug/netcoreapp3.1/BlazorRealTime.Server.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/obj/Debug/netcoreapp3.1/BlazorRealTime.Server.assets.cache -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/System.ComponentModel.Annotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/System.ComponentModel.Annotations.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/System.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/System.Core.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.JSInterop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.JSInterop.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/System.IO.Pipelines.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/System.IO.Pipelines.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/System.Composition.AttributedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/System.Composition.AttributedModel.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/dotnet-aspnet-codegenerator-design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/dotnet-aspnet-codegenerator-design.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.AspNetCore.Authorization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.AspNetCore.Authorization.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.AspNetCore.Components.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.AspNetCore.Components.Web.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.AspNetCore.Http.Features.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.AspNetCore.Http.Features.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.AspNetCore.SignalR.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.AspNetCore.SignalR.Common.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Mono.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Mono.Security.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/System.Net.Http.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/BlazorRealTime.Blazor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/BlazorRealTime.Blazor.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/BlazorRealTime.Blazor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/BlazorRealTime.Blazor.pdb -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/WebAssembly.Bindings.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/WebAssembly.Bindings.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/WebAssembly.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/WebAssembly.Net.Http.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Razor.Language.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Razor.Language.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.AspNetCore.Blazor.HttpClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.AspNetCore.Blazor.HttpClient.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.AspNetCore.Components.Forms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.AspNetCore.Components.Forms.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/System.Text.Json.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/RazorDeclaration/BlazorRealTime.Blazor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/RazorDeclaration/BlazorRealTime.Blazor.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/RazorDeclaration/BlazorRealTime.Blazor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/RazorDeclaration/BlazorRealTime.Blazor.pdb -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Mono.WebAssembly.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Mono.WebAssembly.Interop.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/System.Net.WebSockets.WebSocketProtocol.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/System.Net.WebSockets.WebSocketProtocol.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.Core.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.Extensions.Configuration.Binder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.Extensions.Configuration.Binder.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.JSInterop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.JSInterop.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/System.IO.Pipelines.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/System.IO.Pipelines.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/WebAssembly.Bindings.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/WebAssembly.Bindings.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/WebAssembly.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/WebAssembly.Net.Http.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.AspNetCore.Blazor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.AspNetCore.Blazor.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/System.Text.Encodings.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/System.Text.Encodings.Web.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/System.Threading.Channels.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/System.Threading.Channels.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/WebAssembly.Net.WebSockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/WebAssembly.Net.WebSockets.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.AspNetCore.SignalR.Protocols.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.AspNetCore.SignalR.Protocols.Json.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/BlazorRealTime.Blazor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/BlazorRealTime.Blazor.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/BlazorRealTime.Blazor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/BlazorRealTime.Blazor.pdb -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.AspNetCore.Connections.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.AspNetCore.Connections.Abstractions.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Client.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Common.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Mono.WebAssembly.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Mono.WebAssembly.Interop.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/System.Text.Encodings.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/System.Text.Encodings.Web.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/System.Threading.Channels.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/System.Threading.Channels.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.AspNetCore.Components.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.AspNetCore.Components.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/obj/Debug/netcoreapp3.1/BlazorRealTime.Server.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/obj/Debug/netcoreapp3.1/BlazorRealTime.Server.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.AspNetCore.Blazor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.AspNetCore.Blazor.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/WebAssembly.Net.WebSockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/WebAssembly.Net.WebSockets.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/BlazorRealTime.Blazor.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/BlazorRealTime.Blazor.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.AspNetCore.Http.Features.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.AspNetCore.Http.Features.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.AspNetCore.Components.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.AspNetCore.Components.Web.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.AspNetCore.SignalR.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.AspNetCore.SignalR.Client.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.AspNetCore.SignalR.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.AspNetCore.SignalR.Common.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.AspNetCore.Components.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.AspNetCore.Components.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.AspNetCore.Blazor.HttpClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.AspNetCore.Blazor.HttpClient.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.AspNetCore.Components.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.AspNetCore.Components.Web.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.AspNetCore.Http.Features.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.AspNetCore.Http.Features.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.AspNetCore.SignalR.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.AspNetCore.SignalR.Client.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.AspNetCore.SignalR.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.AspNetCore.SignalR.Common.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.AspNetCore.SignalR.Client.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.AspNetCore.SignalR.Client.Core.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.AspNetCore.Http.Connections.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.AspNetCore.Http.Connections.Client.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.AspNetCore.Http.Connections.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.AspNetCore.Http.Connections.Common.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.AspNetCore.SignalR.Protocols.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.AspNetCore.SignalR.Protocols.Json.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.AspNetCore.Blazor.HttpClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.AspNetCore.Blazor.HttpClient.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.AspNetCore.SignalR.Client.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.AspNetCore.SignalR.Client.Core.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.AspNetCore.Connections.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.AspNetCore.Connections.Abstractions.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.AspNetCore.Connections.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.AspNetCore.Connections.Abstractions.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.AspNetCore.Http.Connections.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.AspNetCore.Http.Connections.Client.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.AspNetCore.Http.Connections.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.AspNetCore.Http.Connections.Common.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.AspNetCore.SignalR.Protocols.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.AspNetCore.SignalR.Protocols.Json.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/BlazorRealTime.Blazor.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | IIS Express 5 | 6 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/_Imports.razor: -------------------------------------------------------------------------------- 1 | @using System.Net.Http 2 | @using Microsoft.AspNetCore.Components.Forms 3 | @using Microsoft.AspNetCore.Components.Routing 4 | @using Microsoft.AspNetCore.Components.Web 5 | @using Microsoft.JSInterop 6 | @using BlazorRealTime.Blazor 7 | @using BlazorRealTime.Blazor.Shared 8 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aksoftware98/blazorwithsignalr/HEAD/src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/_bin/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/BlazorRealTime.Server.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "framework": { 5 | "name": "Microsoft.AspNetCore.App", 6 | "version": "3.1.0" 7 | }, 8 | "configProperties": { 9 | "System.GC.Server": true 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/BlazorRealTime.Blazor.blazor.config: -------------------------------------------------------------------------------- 1 | C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\BlazorRealTime.Blazor.csproj 2 | C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\bin\Debug\netstandard2.1\BlazorRealTime.Blazor.dll 3 | debug:true 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Blazor WebAssembly with SignalR 2 | 3 | 4 | Learn about Real-Time and how to use SignalR in your ASP.NET Core API & Blazor WebAssembly Client-Side projects to enable the communication between the client and the server effectivly 5 | 6 | 7 | This repository is associated with the YouTube video in AK Academy, Blazor Topics series 8 | https://youtu.be/tUV5OMsttZk 9 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/obj/BlazorRealTime.Server.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/Pages/Counter.razor: -------------------------------------------------------------------------------- 1 | @page "/counter" 2 | 3 |

Counter

4 | 5 |

Current count: @currentCount

6 | 7 | 8 | 9 | @code { 10 | private int currentCount = 0; 11 | 12 | private void IncrementCount() 13 | { 14 | currentCount++; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/Shared/MainLayout.razor: -------------------------------------------------------------------------------- 1 | @inherits LayoutComponentBase 2 | 3 | 6 | 7 |
8 |
9 | About 10 |
11 | 12 |
13 | @Body 14 |
15 |
16 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/BlazorRealTime.Server.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\dell\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\dell\\.nuget\\packages", 6 | "C:\\Microsoft\\Xamarin\\NuGet", 7 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 8 | ] 9 | } 10 | } -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/WeatherForecast.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace BlazorRealTime.Server 4 | { 5 | public class WeatherForecast 6 | { 7 | public DateTime Date { get; set; } 8 | 9 | public int TemperatureC { get; set; } 10 | 11 | public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); 12 | 13 | public string Summary { get; set; } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/App.razor: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Sorry, there's nothing at this address.

8 |
9 |
10 |
11 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/BlazorRealTime.Server.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp3.1 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/NotificationHub.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.SignalR; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Diagnostics; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | 8 | namespace BlazorRealTime.Server 9 | { 10 | public class NotificationHub : Hub 11 | { 12 | 13 | public override Task OnConnectedAsync() 14 | { 15 | Debug.WriteLine(Context.ConnectionId); 16 | return base.OnConnectedAsync(); 17 | } 18 | 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/Shared/SurveyPrompt.razor: -------------------------------------------------------------------------------- 1 | 11 | 12 | @code { 13 | // Demonstrates how a parent component can supply parameters 14 | [Parameter] 15 | public string Title { get; set; } 16 | } 17 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Threading.Tasks; 4 | using System.Text; 5 | using Microsoft.AspNetCore.Blazor.Hosting; 6 | using Microsoft.Extensions.DependencyInjection; 7 | 8 | namespace BlazorRealTime.Blazor 9 | { 10 | public class Program 11 | { 12 | public static async Task Main(string[] args) 13 | { 14 | var builder = WebAssemblyHostBuilder.CreateDefault(args); 15 | builder.RootComponents.Add("app"); 16 | 17 | await builder.Build().RunAsync(); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/wwwroot/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | BlazorRealTime.Blazor 8 | 9 | 10 | 11 | 12 | 13 | 14 | Loading... 15 | 16 |
17 | An unhandled error has occurred. 18 | Reload 19 | 🗙 20 |
21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/wwwroot/sample-data/weather.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "date": "2018-05-06", 4 | "temperatureC": 1, 5 | "summary": "Freezing", 6 | "temperatureF": 33 7 | }, 8 | { 9 | "date": "2018-05-07", 10 | "temperatureC": 14, 11 | "summary": "Bracing", 12 | "temperatureF": 57 13 | }, 14 | { 15 | "date": "2018-05-08", 16 | "temperatureC": -13, 17 | "summary": "Freezing", 18 | "temperatureF": 9 19 | }, 20 | { 21 | "date": "2018-05-09", 22 | "temperatureC": -16, 23 | "summary": "Balmy", 24 | "temperatureF": 4 25 | }, 26 | { 27 | "date": "2018-05-10", 28 | "temperatureC": -2, 29 | "summary": "Chilly", 30 | "temperatureF": 29 31 | } 32 | ] 33 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "iisSettings": { 3 | "windowsAuthentication": false, 4 | "anonymousAuthentication": true, 5 | "iisExpress": { 6 | "applicationUrl": "http://localhost:63932/", 7 | "sslPort": 44376 8 | } 9 | }, 10 | "profiles": { 11 | "IIS Express": { 12 | "commandName": "IISExpress", 13 | "launchBrowser": true, 14 | "environmentVariables": { 15 | "ASPNETCORE_ENVIRONMENT": "Development" 16 | } 17 | }, 18 | "BlazorRealTime.Blazor": { 19 | "commandName": "Project", 20 | "launchBrowser": true, 21 | "environmentVariables": { 22 | "ASPNETCORE_ENVIRONMENT": "Development" 23 | }, 24 | "applicationUrl": "https://localhost:5001;http://localhost:5000" 25 | } 26 | } 27 | } -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "iisSettings": { 3 | "windowsAuthentication": false, 4 | "anonymousAuthentication": true, 5 | "iisExpress": { 6 | "applicationUrl": "http://localhost:63932/", 7 | "sslPort": 44376 8 | } 9 | }, 10 | "profiles": { 11 | "IIS Express": { 12 | "commandName": "IISExpress", 13 | "launchBrowser": true, 14 | "environmentVariables": { 15 | "ASPNETCORE_ENVIRONMENT": "Development" 16 | } 17 | }, 18 | "BlazorRealTime.Blazor": { 19 | "commandName": "Project", 20 | "launchBrowser": true, 21 | "environmentVariables": { 22 | "ASPNETCORE_ENVIRONMENT": "Development" 23 | }, 24 | "applicationUrl": "https://localhost:5001;http://localhost:5000" 25 | } 26 | } 27 | } -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using Microsoft.AspNetCore.Hosting; 6 | using Microsoft.Extensions.Configuration; 7 | using Microsoft.Extensions.Hosting; 8 | using Microsoft.Extensions.Logging; 9 | 10 | namespace BlazorRealTime.Server 11 | { 12 | public class Program 13 | { 14 | public static void Main(string[] args) 15 | { 16 | CreateHostBuilder(args).Build().Run(); 17 | } 18 | 19 | public static IHostBuilder CreateHostBuilder(string[] args) => 20 | Host.CreateDefaultBuilder(args) 21 | .ConfigureWebHostDefaults(webBuilder => 22 | { 23 | webBuilder.UseStartup(); 24 | }); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/BlazorRealTime.Blazor.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netstandard2.1 5 | 3.0 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "iisSettings": { 3 | "windowsAuthentication": false, 4 | "anonymousAuthentication": true, 5 | "iisExpress": { 6 | "applicationUrl": "http://localhost:63945", 7 | "sslPort": 0 8 | } 9 | }, 10 | "$schema": "http://json.schemastore.org/launchsettings.json", 11 | "profiles": { 12 | "IIS Express": { 13 | "commandName": "IISExpress", 14 | "launchBrowser": true, 15 | "launchUrl": "weatherforecast", 16 | "environmentVariables": { 17 | "ASPNETCORE_ENVIRONMENT": "Development" 18 | } 19 | }, 20 | "BlazorRealTime.Server": { 21 | "commandName": "Project", 22 | "launchBrowser": true, 23 | "launchUrl": "weatherforecast", 24 | "environmentVariables": { 25 | "ASPNETCORE_ENVIRONMENT": "Development" 26 | }, 27 | "applicationUrl": "https://localhost:5001;http://localhost:5000" 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/bin/Debug/netcoreapp3.1/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "iisSettings": { 3 | "windowsAuthentication": false, 4 | "anonymousAuthentication": true, 5 | "iisExpress": { 6 | "applicationUrl": "http://localhost:63945", 7 | "sslPort": 0 8 | } 9 | }, 10 | "$schema": "http://json.schemastore.org/launchsettings.json", 11 | "profiles": { 12 | "IIS Express": { 13 | "commandName": "IISExpress", 14 | "launchBrowser": true, 15 | "launchUrl": "weatherforecast", 16 | "environmentVariables": { 17 | "ASPNETCORE_ENVIRONMENT": "Development" 18 | } 19 | }, 20 | "BlazorRealTime.Server": { 21 | "commandName": "Project", 22 | "launchBrowser": true, 23 | "launchUrl": "weatherforecast", 24 | "environmentVariables": { 25 | "ASPNETCORE_ENVIRONMENT": "Development" 26 | }, 27 | "applicationUrl": "https://localhost:5001;http://localhost:5000" 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/BlazorRealTime.Server.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ApiControllerEmptyScaffolder 5 | root/Controller 6 | 600 7 | True 8 | False 9 | True 10 | 11 | False 12 | 13 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/Controllers/NotificationsController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using Microsoft.AspNetCore.Http; 6 | using Microsoft.AspNetCore.Mvc; 7 | using Microsoft.AspNetCore.SignalR; 8 | 9 | namespace BlazorRealTime.Server.Controllers 10 | { 11 | [Route("api/[controller]")] 12 | [ApiController] 13 | public class NotificationsController : ControllerBase 14 | { 15 | 16 | private readonly IHubContext _hubContext; 17 | 18 | public NotificationsController(IHubContext hubContext) 19 | { 20 | _hubContext = hubContext; 21 | } 22 | 23 | [HttpPost] 24 | public async Task Post([FromQuery]string title) 25 | { 26 | await _hubContext.Clients.All.SendAsync("notification", $"{DateTime.Now}: {title}"); 27 | return Ok("Notification has been sent successfully!"); 28 | } 29 | 30 | } 31 | } -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/BlazorRealTime.Blazor.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("BlazorRealTime.Blazor")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("BlazorRealTime.Blazor")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("BlazorRealTime.Blazor")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/obj/Debug/netcoreapp3.1/BlazorRealTime.Server.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("BlazorRealTime.Server")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("BlazorRealTime.Server")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("BlazorRealTime.Server")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/wwwroot/css/open-iconic/ICON-LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 Waybury 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using Microsoft.AspNetCore.Mvc; 6 | using Microsoft.Extensions.Logging; 7 | 8 | namespace BlazorRealTime.Server.Controllers 9 | { 10 | [ApiController] 11 | [Route("[controller]")] 12 | public class WeatherForecastController : ControllerBase 13 | { 14 | private static readonly string[] Summaries = new[] 15 | { 16 | "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" 17 | }; 18 | 19 | private readonly ILogger _logger; 20 | 21 | public WeatherForecastController(ILogger logger) 22 | { 23 | _logger = logger; 24 | } 25 | 26 | [HttpGet] 27 | public IEnumerable Get() 28 | { 29 | var rng = new Random(); 30 | return Enumerable.Range(1, 5).Select(index => new WeatherForecast 31 | { 32 | Date = DateTime.Now.AddDays(index), 33 | TemperatureC = rng.Next(-20, 55), 34 | Summary = Summaries[rng.Next(Summaries.Length)] 35 | }) 36 | .ToArray(); 37 | } 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/Shared/NavMenu.razor: -------------------------------------------------------------------------------- 1 | 7 | 8 |
9 | 26 |
27 | 28 | @code { 29 | private bool collapseNavMenu = true; 30 | 31 | private string NavMenuCssClass => collapseNavMenu ? "collapse" : null; 32 | 33 | private void ToggleNavMenu() 34 | { 35 | collapseNavMenu = !collapseNavMenu; 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/BlazorRealTime.Blazor.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/blazor.boot.json: -------------------------------------------------------------------------------- 1 | {"assemblies":["BlazorRealTime.Blazor.dll","BlazorRealTime.Blazor.pdb","Microsoft.AspNetCore.Blazor.HttpClient.dll","Microsoft.AspNetCore.Blazor.dll","Microsoft.AspNetCore.Components.Web.dll","Microsoft.AspNetCore.Components.dll","Microsoft.AspNetCore.Connections.Abstractions.dll","Microsoft.AspNetCore.Http.Connections.Client.dll","Microsoft.AspNetCore.Http.Connections.Common.dll","Microsoft.AspNetCore.Http.Features.dll","Microsoft.AspNetCore.SignalR.Client.Core.dll","Microsoft.AspNetCore.SignalR.Client.dll","Microsoft.AspNetCore.SignalR.Common.dll","Microsoft.AspNetCore.SignalR.Protocols.Json.dll","Microsoft.Bcl.AsyncInterfaces.dll","Microsoft.Extensions.Configuration.Abstractions.dll","Microsoft.Extensions.Configuration.dll","Microsoft.Extensions.DependencyInjection.Abstractions.dll","Microsoft.Extensions.DependencyInjection.dll","Microsoft.Extensions.Logging.Abstractions.dll","Microsoft.Extensions.Logging.dll","Microsoft.Extensions.Options.dll","Microsoft.Extensions.Primitives.dll","Microsoft.JSInterop.dll","Mono.Security.dll","Mono.WebAssembly.Interop.dll","System.Core.dll","System.IO.Pipelines.dll","System.Net.Http.dll","System.Runtime.CompilerServices.Unsafe.dll","System.Text.Encodings.Web.dll","System.Text.Json.dll","System.Threading.Channels.dll","System.dll","WebAssembly.Bindings.dll","WebAssembly.Net.Http.dll","WebAssembly.Net.WebSockets.dll","mscorlib.dll"],"entryAssembly":"BlazorRealTime.Blazor","linkerEnabled":true} -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/bin/Debug/netstandard2.1/dist/_framework/blazor.boot.json: -------------------------------------------------------------------------------- 1 | {"assemblies":["BlazorRealTime.Blazor.dll","BlazorRealTime.Blazor.pdb","Microsoft.AspNetCore.Blazor.HttpClient.dll","Microsoft.AspNetCore.Blazor.dll","Microsoft.AspNetCore.Components.Web.dll","Microsoft.AspNetCore.Components.dll","Microsoft.AspNetCore.Connections.Abstractions.dll","Microsoft.AspNetCore.Http.Connections.Client.dll","Microsoft.AspNetCore.Http.Connections.Common.dll","Microsoft.AspNetCore.Http.Features.dll","Microsoft.AspNetCore.SignalR.Client.Core.dll","Microsoft.AspNetCore.SignalR.Client.dll","Microsoft.AspNetCore.SignalR.Common.dll","Microsoft.AspNetCore.SignalR.Protocols.Json.dll","Microsoft.Bcl.AsyncInterfaces.dll","Microsoft.Extensions.Configuration.Abstractions.dll","Microsoft.Extensions.Configuration.dll","Microsoft.Extensions.DependencyInjection.Abstractions.dll","Microsoft.Extensions.DependencyInjection.dll","Microsoft.Extensions.Logging.Abstractions.dll","Microsoft.Extensions.Logging.dll","Microsoft.Extensions.Options.dll","Microsoft.Extensions.Primitives.dll","Microsoft.JSInterop.dll","Mono.Security.dll","Mono.WebAssembly.Interop.dll","System.Core.dll","System.IO.Pipelines.dll","System.Net.Http.dll","System.Runtime.CompilerServices.Unsafe.dll","System.Text.Encodings.Web.dll","System.Text.Json.dll","System.Threading.Channels.dll","System.dll","WebAssembly.Bindings.dll","WebAssembly.Net.Http.dll","WebAssembly.Net.WebSockets.dll","mscorlib.dll"],"entryAssembly":"BlazorRealTime.Blazor","linkerEnabled":true} -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/Pages/FetchData.razor: -------------------------------------------------------------------------------- 1 | @page "/fetchdata" 2 | @inject HttpClient Http 3 | 4 |

Weather forecast

5 | 6 |

This component demonstrates fetching data from the server.

7 | 8 | @if (forecasts == null) 9 | { 10 |

Loading...

11 | } 12 | else 13 | { 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | @foreach (var forecast in forecasts) 25 | { 26 | 27 | 28 | 29 | 30 | 31 | 32 | } 33 | 34 |
DateTemp. (C)Temp. (F)Summary
@forecast.Date.ToShortDateString()@forecast.TemperatureC@forecast.TemperatureF@forecast.Summary
35 | } 36 | 37 | @code { 38 | private WeatherForecast[] forecasts; 39 | 40 | protected override async Task OnInitializedAsync() 41 | { 42 | forecasts = await Http.GetJsonAsync("sample-data/weather.json"); 43 | } 44 | 45 | public class WeatherForecast 46 | { 47 | public DateTime Date { get; set; } 48 | 49 | public int TemperatureC { get; set; } 50 | 51 | public string Summary { get; set; } 52 | 53 | public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/Pages/Index.razor: -------------------------------------------------------------------------------- 1 | @page "/" 2 | @using Microsoft.AspNetCore.SignalR.Client 3 | 4 |

Welcome to SignalR with Blazor

5 | 6 |

Connection Status: @connectionStatus

7 |
8 |
9 | @foreach (var item in notifications) 10 | { 11 |
12 |

@item

13 |
14 | } 15 |
16 |
17 | 18 | @code { 19 | string url = "http://localhost:63945/notificationhub"; 20 | 21 | HubConnection _connection = null; 22 | bool isConnected = false; 23 | string connectionStatus = "Closed"; 24 | 25 | List notifications = new List(); 26 | 27 | private async Task ConnectToServer() 28 | { 29 | _connection = new HubConnectionBuilder() 30 | .WithUrl(url) 31 | .Build(); 32 | 33 | await _connection.StartAsync(); 34 | isConnected = true; 35 | connectionStatus = "Connected :-)"; 36 | 37 | _connection.Closed += async (s) => 38 | { 39 | isConnected = false; 40 | connectionStatus = "Disconnected"; 41 | await _connection.StartAsync(); 42 | isConnected = true; 43 | }; 44 | 45 | _connection.On("notification", m => 46 | { 47 | notifications.Add(m); 48 | StateHasChanged(); 49 | }); 50 | } 51 | 52 | } 53 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/obj/BlazorRealTime.Server.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\dell\.nuget\packages\;C:\Microsoft\Xamarin\NuGet\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder 9 | PackageReference 10 | 5.4.0 11 | 12 | 13 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 14 | 15 | 16 | C:\Users\dell\.nuget\packages\microsoft.codeanalysis.analyzers\2.9.4 17 | 18 | -------------------------------------------------------------------------------- /src/BlazorRealTime.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29709.97 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BlazorRealTime.Blazor", "BlazorRealTime.Blazor\BlazorRealTime.Blazor.csproj", "{D0A3D0D5-51E3-46E4-9AFD-E3CB5844C9F5}" 7 | EndProject 8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BlazorRealTime.Server", "BlazorRealTime.Server\BlazorRealTime.Server.csproj", "{833D6111-4D95-4E74-BC2B-53B34AB9BDFA}" 9 | EndProject 10 | Global 11 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 12 | Debug|Any CPU = Debug|Any CPU 13 | Release|Any CPU = Release|Any CPU 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {D0A3D0D5-51E3-46E4-9AFD-E3CB5844C9F5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 17 | {D0A3D0D5-51E3-46E4-9AFD-E3CB5844C9F5}.Debug|Any CPU.Build.0 = Debug|Any CPU 18 | {D0A3D0D5-51E3-46E4-9AFD-E3CB5844C9F5}.Release|Any CPU.ActiveCfg = Release|Any CPU 19 | {D0A3D0D5-51E3-46E4-9AFD-E3CB5844C9F5}.Release|Any CPU.Build.0 = Release|Any CPU 20 | {833D6111-4D95-4E74-BC2B-53B34AB9BDFA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 21 | {833D6111-4D95-4E74-BC2B-53B34AB9BDFA}.Debug|Any CPU.Build.0 = Debug|Any CPU 22 | {833D6111-4D95-4E74-BC2B-53B34AB9BDFA}.Release|Any CPU.ActiveCfg = Release|Any CPU 23 | {833D6111-4D95-4E74-BC2B-53B34AB9BDFA}.Release|Any CPU.Build.0 = Release|Any CPU 24 | EndGlobalSection 25 | GlobalSection(SolutionProperties) = preSolution 26 | HideSolutionNode = FALSE 27 | EndGlobalSection 28 | GlobalSection(ExtensibilityGlobals) = postSolution 29 | SolutionGuid = {C8136B4F-57F6-415B-875B-6014D2D7235B} 30 | EndGlobalSection 31 | EndGlobal 32 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/Startup.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using Microsoft.AspNetCore.Builder; 6 | using Microsoft.AspNetCore.Hosting; 7 | using Microsoft.AspNetCore.HttpsPolicy; 8 | using Microsoft.AspNetCore.Mvc; 9 | using Microsoft.Extensions.Configuration; 10 | using Microsoft.Extensions.DependencyInjection; 11 | using Microsoft.Extensions.Hosting; 12 | using Microsoft.Extensions.Logging; 13 | 14 | namespace BlazorRealTime.Server 15 | { 16 | public class Startup 17 | { 18 | public Startup(IConfiguration configuration) 19 | { 20 | Configuration = configuration; 21 | } 22 | 23 | public IConfiguration Configuration { get; } 24 | 25 | // This method gets called by the runtime. Use this method to add services to the container. 26 | public void ConfigureServices(IServiceCollection services) 27 | { 28 | services.AddCors(options => 29 | { 30 | options.AddPolicy("CorsPolicy", policy => 31 | { 32 | policy.AllowAnyOrigin().AllowAnyMethod().AllowAnyHeader(); 33 | }); 34 | }); 35 | services.AddSignalR(); 36 | services.AddControllers(); 37 | } 38 | 39 | // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. 40 | public void Configure(IApplicationBuilder app, IWebHostEnvironment env) 41 | { 42 | if (env.IsDevelopment()) 43 | { 44 | app.UseDeveloperExceptionPage(); 45 | } 46 | 47 | app.UseHttpsRedirection(); 48 | 49 | app.UseRouting(); 50 | app.UseCors("CorsPolicy"); 51 | app.UseAuthorization(); 52 | 53 | app.UseEndpoints(endpoints => 54 | { 55 | endpoints.MapHub("/notificationhub"); 56 | endpoints.MapControllers(); 57 | }); 58 | } 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/Razor/_Imports.razor.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "bc88206984fcec64b6d54c078c07c7d64fa3214f" 2 | // 3 | #pragma warning disable 1591 4 | namespace BlazorRealTime.Blazor 5 | { 6 | #line hidden 7 | using System; 8 | using System.Collections.Generic; 9 | using System.Linq; 10 | using System.Threading.Tasks; 11 | using Microsoft.AspNetCore.Components; 12 | #nullable restore 13 | #line 1 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 14 | using System.Net.Http; 15 | 16 | #line default 17 | #line hidden 18 | #nullable disable 19 | #nullable restore 20 | #line 2 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 21 | using Microsoft.AspNetCore.Components.Forms; 22 | 23 | #line default 24 | #line hidden 25 | #nullable disable 26 | #nullable restore 27 | #line 3 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 28 | using Microsoft.AspNetCore.Components.Routing; 29 | 30 | #line default 31 | #line hidden 32 | #nullable disable 33 | #nullable restore 34 | #line 4 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 35 | using Microsoft.AspNetCore.Components.Web; 36 | 37 | #line default 38 | #line hidden 39 | #nullable disable 40 | #nullable restore 41 | #line 5 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 42 | using Microsoft.JSInterop; 43 | 44 | #line default 45 | #line hidden 46 | #nullable disable 47 | #nullable restore 48 | #line 6 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 49 | using BlazorRealTime.Blazor; 50 | 51 | #line default 52 | #line hidden 53 | #nullable disable 54 | #nullable restore 55 | #line 7 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 56 | using BlazorRealTime.Blazor.Shared; 57 | 58 | #line default 59 | #line hidden 60 | #nullable disable 61 | public partial class _Imports : System.Object 62 | { 63 | #pragma warning disable 1998 64 | protected void Execute() 65 | { 66 | } 67 | #pragma warning restore 1998 68 | } 69 | } 70 | #pragma warning restore 1591 71 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/RazorDeclaration/_Imports.razor.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "bc88206984fcec64b6d54c078c07c7d64fa3214f" 2 | // 3 | #pragma warning disable 1591 4 | #pragma warning disable 0414 5 | #pragma warning disable 0649 6 | #pragma warning disable 0169 7 | 8 | namespace BlazorRealTime.Blazor 9 | { 10 | #line hidden 11 | using System; 12 | using System.Collections.Generic; 13 | using System.Linq; 14 | using System.Threading.Tasks; 15 | using Microsoft.AspNetCore.Components; 16 | #nullable restore 17 | #line 1 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 18 | using System.Net.Http; 19 | 20 | #line default 21 | #line hidden 22 | #nullable disable 23 | #nullable restore 24 | #line 2 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 25 | using Microsoft.AspNetCore.Components.Forms; 26 | 27 | #line default 28 | #line hidden 29 | #nullable disable 30 | #nullable restore 31 | #line 3 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 32 | using Microsoft.AspNetCore.Components.Routing; 33 | 34 | #line default 35 | #line hidden 36 | #nullable disable 37 | #nullable restore 38 | #line 4 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 39 | using Microsoft.AspNetCore.Components.Web; 40 | 41 | #line default 42 | #line hidden 43 | #nullable disable 44 | #nullable restore 45 | #line 5 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 46 | using Microsoft.JSInterop; 47 | 48 | #line default 49 | #line hidden 50 | #nullable disable 51 | #nullable restore 52 | #line 6 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 53 | using BlazorRealTime.Blazor; 54 | 55 | #line default 56 | #line hidden 57 | #nullable disable 58 | #nullable restore 59 | #line 7 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 60 | using BlazorRealTime.Blazor.Shared; 61 | 62 | #line default 63 | #line hidden 64 | #nullable disable 65 | public partial class _Imports : System.Object 66 | { 67 | #pragma warning disable 1998 68 | protected void Execute() 69 | { 70 | } 71 | #pragma warning restore 1998 72 | } 73 | } 74 | #pragma warning restore 1591 75 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/RazorDeclaration/App.razor.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\App.razor" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "5760763b9b9a4230bcc57d90540e9f5b9fa81a79" 2 | // 3 | #pragma warning disable 1591 4 | #pragma warning disable 0414 5 | #pragma warning disable 0649 6 | #pragma warning disable 0169 7 | 8 | namespace BlazorRealTime.Blazor 9 | { 10 | #line hidden 11 | using System; 12 | using System.Collections.Generic; 13 | using System.Linq; 14 | using System.Threading.Tasks; 15 | using Microsoft.AspNetCore.Components; 16 | #nullable restore 17 | #line 1 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 18 | using System.Net.Http; 19 | 20 | #line default 21 | #line hidden 22 | #nullable disable 23 | #nullable restore 24 | #line 2 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 25 | using Microsoft.AspNetCore.Components.Forms; 26 | 27 | #line default 28 | #line hidden 29 | #nullable disable 30 | #nullable restore 31 | #line 3 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 32 | using Microsoft.AspNetCore.Components.Routing; 33 | 34 | #line default 35 | #line hidden 36 | #nullable disable 37 | #nullable restore 38 | #line 4 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 39 | using Microsoft.AspNetCore.Components.Web; 40 | 41 | #line default 42 | #line hidden 43 | #nullable disable 44 | #nullable restore 45 | #line 5 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 46 | using Microsoft.JSInterop; 47 | 48 | #line default 49 | #line hidden 50 | #nullable disable 51 | #nullable restore 52 | #line 6 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 53 | using BlazorRealTime.Blazor; 54 | 55 | #line default 56 | #line hidden 57 | #nullable disable 58 | #nullable restore 59 | #line 7 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 60 | using BlazorRealTime.Blazor.Shared; 61 | 62 | #line default 63 | #line hidden 64 | #nullable disable 65 | public partial class App : Microsoft.AspNetCore.Components.ComponentBase 66 | { 67 | #pragma warning disable 1998 68 | protected override void BuildRenderTree(Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder __builder) 69 | { 70 | } 71 | #pragma warning restore 1998 72 | } 73 | } 74 | #pragma warning restore 1591 75 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/RazorDeclaration/Shared/MainLayout.razor.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Shared\MainLayout.razor" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "fd6d20d95fdaaf0db83a6a3154434357438fcf15" 2 | // 3 | #pragma warning disable 1591 4 | #pragma warning disable 0414 5 | #pragma warning disable 0649 6 | #pragma warning disable 0169 7 | 8 | namespace BlazorRealTime.Blazor.Shared 9 | { 10 | #line hidden 11 | using System; 12 | using System.Collections.Generic; 13 | using System.Linq; 14 | using System.Threading.Tasks; 15 | using Microsoft.AspNetCore.Components; 16 | #nullable restore 17 | #line 1 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 18 | using System.Net.Http; 19 | 20 | #line default 21 | #line hidden 22 | #nullable disable 23 | #nullable restore 24 | #line 2 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 25 | using Microsoft.AspNetCore.Components.Forms; 26 | 27 | #line default 28 | #line hidden 29 | #nullable disable 30 | #nullable restore 31 | #line 3 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 32 | using Microsoft.AspNetCore.Components.Routing; 33 | 34 | #line default 35 | #line hidden 36 | #nullable disable 37 | #nullable restore 38 | #line 4 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 39 | using Microsoft.AspNetCore.Components.Web; 40 | 41 | #line default 42 | #line hidden 43 | #nullable disable 44 | #nullable restore 45 | #line 5 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 46 | using Microsoft.JSInterop; 47 | 48 | #line default 49 | #line hidden 50 | #nullable disable 51 | #nullable restore 52 | #line 6 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 53 | using BlazorRealTime.Blazor; 54 | 55 | #line default 56 | #line hidden 57 | #nullable disable 58 | #nullable restore 59 | #line 7 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 60 | using BlazorRealTime.Blazor.Shared; 61 | 62 | #line default 63 | #line hidden 64 | #nullable disable 65 | public partial class MainLayout : LayoutComponentBase 66 | { 67 | #pragma warning disable 1998 68 | protected override void BuildRenderTree(Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder __builder) 69 | { 70 | } 71 | #pragma warning restore 1998 72 | } 73 | } 74 | #pragma warning restore 1591 75 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/BlazorRealTime.Blazor.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\dell\.nuget\packages\;C:\Microsoft\Xamarin\NuGet\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder 9 | PackageReference 10 | 5.4.0 11 | 12 | 13 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 14 | 15 | 16 | 17 | 18 | 19 | 20 | C:\Users\dell\.nuget\packages\microsoft.aspnetcore.blazor.mono\3.2.0-preview1.20067.1 21 | C:\Users\dell\.nuget\packages\microsoft.aspnetcore.blazor.devserver\3.2.0-preview1.20073.1 22 | C:\Users\dell\.nuget\packages\microsoft.aspnetcore.blazor.build\3.2.0-preview1.20073.1 23 | 24 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker.output: -------------------------------------------------------------------------------- 1 | obj\Debug\netstandard2.1\blazor\linker\BlazorRealTime.Blazor.dll 2 | obj\Debug\netstandard2.1\blazor\linker\Microsoft.AspNetCore.Blazor.dll 3 | obj\Debug\netstandard2.1\blazor\linker\Microsoft.AspNetCore.Blazor.HttpClient.dll 4 | obj\Debug\netstandard2.1\blazor\linker\Microsoft.AspNetCore.Components.dll 5 | obj\Debug\netstandard2.1\blazor\linker\Microsoft.AspNetCore.Components.Web.dll 6 | obj\Debug\netstandard2.1\blazor\linker\Microsoft.AspNetCore.Connections.Abstractions.dll 7 | obj\Debug\netstandard2.1\blazor\linker\Microsoft.AspNetCore.Http.Connections.Client.dll 8 | obj\Debug\netstandard2.1\blazor\linker\Microsoft.AspNetCore.Http.Connections.Common.dll 9 | obj\Debug\netstandard2.1\blazor\linker\Microsoft.AspNetCore.Http.Features.dll 10 | obj\Debug\netstandard2.1\blazor\linker\Microsoft.AspNetCore.SignalR.Client.Core.dll 11 | obj\Debug\netstandard2.1\blazor\linker\Microsoft.AspNetCore.SignalR.Client.dll 12 | obj\Debug\netstandard2.1\blazor\linker\Microsoft.AspNetCore.SignalR.Common.dll 13 | obj\Debug\netstandard2.1\blazor\linker\Microsoft.AspNetCore.SignalR.Protocols.Json.dll 14 | obj\Debug\netstandard2.1\blazor\linker\Microsoft.Bcl.AsyncInterfaces.dll 15 | obj\Debug\netstandard2.1\blazor\linker\Microsoft.Extensions.Configuration.Abstractions.dll 16 | obj\Debug\netstandard2.1\blazor\linker\Microsoft.Extensions.Configuration.dll 17 | obj\Debug\netstandard2.1\blazor\linker\Microsoft.Extensions.DependencyInjection.Abstractions.dll 18 | obj\Debug\netstandard2.1\blazor\linker\Microsoft.Extensions.DependencyInjection.dll 19 | obj\Debug\netstandard2.1\blazor\linker\Microsoft.Extensions.Logging.Abstractions.dll 20 | obj\Debug\netstandard2.1\blazor\linker\Microsoft.Extensions.Logging.dll 21 | obj\Debug\netstandard2.1\blazor\linker\Microsoft.Extensions.Options.dll 22 | obj\Debug\netstandard2.1\blazor\linker\Microsoft.Extensions.Primitives.dll 23 | obj\Debug\netstandard2.1\blazor\linker\Microsoft.JSInterop.dll 24 | obj\Debug\netstandard2.1\blazor\linker\Mono.Security.dll 25 | obj\Debug\netstandard2.1\blazor\linker\Mono.WebAssembly.Interop.dll 26 | obj\Debug\netstandard2.1\blazor\linker\mscorlib.dll 27 | obj\Debug\netstandard2.1\blazor\linker\System.Core.dll 28 | obj\Debug\netstandard2.1\blazor\linker\System.dll 29 | obj\Debug\netstandard2.1\blazor\linker\System.IO.Pipelines.dll 30 | obj\Debug\netstandard2.1\blazor\linker\System.Net.Http.dll 31 | obj\Debug\netstandard2.1\blazor\linker\System.Runtime.CompilerServices.Unsafe.dll 32 | obj\Debug\netstandard2.1\blazor\linker\System.Text.Encodings.Web.dll 33 | obj\Debug\netstandard2.1\blazor\linker\System.Text.Json.dll 34 | obj\Debug\netstandard2.1\blazor\linker\System.Threading.Channels.dll 35 | obj\Debug\netstandard2.1\blazor\linker\WebAssembly.Bindings.dll 36 | obj\Debug\netstandard2.1\blazor\linker\WebAssembly.Net.Http.dll 37 | obj\Debug\netstandard2.1\blazor\linker\WebAssembly.Net.WebSockets.dll 38 | obj\Debug\netstandard2.1\blazor\linker\BlazorRealTime.Blazor.pdb 39 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/RazorDeclaration/Shared/SurveyPrompt.razor.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Shared\SurveyPrompt.razor" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "3ce8fd3174d26368cee1f2222225d1b6d9193062" 2 | // 3 | #pragma warning disable 1591 4 | #pragma warning disable 0414 5 | #pragma warning disable 0649 6 | #pragma warning disable 0169 7 | 8 | namespace BlazorRealTime.Blazor.Shared 9 | { 10 | #line hidden 11 | using System; 12 | using System.Collections.Generic; 13 | using System.Linq; 14 | using System.Threading.Tasks; 15 | using Microsoft.AspNetCore.Components; 16 | #nullable restore 17 | #line 1 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 18 | using System.Net.Http; 19 | 20 | #line default 21 | #line hidden 22 | #nullable disable 23 | #nullable restore 24 | #line 2 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 25 | using Microsoft.AspNetCore.Components.Forms; 26 | 27 | #line default 28 | #line hidden 29 | #nullable disable 30 | #nullable restore 31 | #line 3 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 32 | using Microsoft.AspNetCore.Components.Routing; 33 | 34 | #line default 35 | #line hidden 36 | #nullable disable 37 | #nullable restore 38 | #line 4 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 39 | using Microsoft.AspNetCore.Components.Web; 40 | 41 | #line default 42 | #line hidden 43 | #nullable disable 44 | #nullable restore 45 | #line 5 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 46 | using Microsoft.JSInterop; 47 | 48 | #line default 49 | #line hidden 50 | #nullable disable 51 | #nullable restore 52 | #line 6 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 53 | using BlazorRealTime.Blazor; 54 | 55 | #line default 56 | #line hidden 57 | #nullable disable 58 | #nullable restore 59 | #line 7 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 60 | using BlazorRealTime.Blazor.Shared; 61 | 62 | #line default 63 | #line hidden 64 | #nullable disable 65 | public partial class SurveyPrompt : Microsoft.AspNetCore.Components.ComponentBase 66 | { 67 | #pragma warning disable 1998 68 | protected override void BuildRenderTree(Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder __builder) 69 | { 70 | } 71 | #pragma warning restore 1998 72 | #nullable restore 73 | #line 12 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Shared\SurveyPrompt.razor" 74 | 75 | // Demonstrates how a parent component can supply parameters 76 | [Parameter] 77 | public string Title { get; set; } 78 | 79 | #line default 80 | #line hidden 81 | #nullable disable 82 | } 83 | } 84 | #pragma warning restore 1591 85 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Server/obj/BlazorRealTime.Server.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "C:\\Users\\dell\\Documents\\AK Academy\\Blazor Topics\\SignalR\\BlazorRealTime\\BlazorRealTime.Server\\BlazorRealTime.Server.csproj": {} 5 | }, 6 | "projects": { 7 | "C:\\Users\\dell\\Documents\\AK Academy\\Blazor Topics\\SignalR\\BlazorRealTime\\BlazorRealTime.Server\\BlazorRealTime.Server.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "C:\\Users\\dell\\Documents\\AK Academy\\Blazor Topics\\SignalR\\BlazorRealTime\\BlazorRealTime.Server\\BlazorRealTime.Server.csproj", 11 | "projectName": "BlazorRealTime.Server", 12 | "projectPath": "C:\\Users\\dell\\Documents\\AK Academy\\Blazor Topics\\SignalR\\BlazorRealTime\\BlazorRealTime.Server\\BlazorRealTime.Server.csproj", 13 | "packagesPath": "C:\\Users\\dell\\.nuget\\packages\\", 14 | "outputPath": "C:\\Users\\dell\\Documents\\AK Academy\\Blazor Topics\\SignalR\\BlazorRealTime\\BlazorRealTime.Server\\obj\\", 15 | "projectStyle": "PackageReference", 16 | "fallbackFolders": [ 17 | "C:\\Microsoft\\Xamarin\\NuGet\\", 18 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 19 | ], 20 | "configFilePaths": [ 21 | "C:\\Users\\dell\\AppData\\Roaming\\NuGet\\NuGet.Config", 22 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config", 23 | "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config" 24 | ], 25 | "originalTargetFrameworks": [ 26 | "netcoreapp3.1" 27 | ], 28 | "sources": { 29 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 30 | "https://api.nuget.org/v3/index.json": {} 31 | }, 32 | "frameworks": { 33 | "netcoreapp3.1": { 34 | "projectReferences": {} 35 | } 36 | }, 37 | "warningProperties": { 38 | "warnAsError": [ 39 | "NU1605" 40 | ] 41 | } 42 | }, 43 | "frameworks": { 44 | "netcoreapp3.1": { 45 | "dependencies": { 46 | "Microsoft.AspNetCore.SignalR": { 47 | "target": "Package", 48 | "version": "[1.1.0, )" 49 | }, 50 | "Microsoft.VisualStudio.Web.CodeGeneration.Design": { 51 | "target": "Package", 52 | "version": "[3.1.1, )" 53 | } 54 | }, 55 | "imports": [ 56 | "net461", 57 | "net462", 58 | "net47", 59 | "net471", 60 | "net472", 61 | "net48" 62 | ], 63 | "assetTargetFallback": true, 64 | "warn": true, 65 | "frameworkReferences": { 66 | "Microsoft.AspNetCore.App": { 67 | "privateAssets": "none" 68 | }, 69 | "Microsoft.NETCore.App": { 70 | "privateAssets": "all" 71 | } 72 | }, 73 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.102\\RuntimeIdentifierGraph.json" 74 | } 75 | } 76 | } 77 | } 78 | } -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/RazorDeclaration/Pages/Counter.razor.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Pages\Counter.razor" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "5456520839664fbbeb726a4af0946602a9d68f5c" 2 | // 3 | #pragma warning disable 1591 4 | #pragma warning disable 0414 5 | #pragma warning disable 0649 6 | #pragma warning disable 0169 7 | 8 | namespace BlazorRealTime.Blazor.Pages 9 | { 10 | #line hidden 11 | using System; 12 | using System.Collections.Generic; 13 | using System.Linq; 14 | using System.Threading.Tasks; 15 | using Microsoft.AspNetCore.Components; 16 | #nullable restore 17 | #line 1 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 18 | using System.Net.Http; 19 | 20 | #line default 21 | #line hidden 22 | #nullable disable 23 | #nullable restore 24 | #line 2 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 25 | using Microsoft.AspNetCore.Components.Forms; 26 | 27 | #line default 28 | #line hidden 29 | #nullable disable 30 | #nullable restore 31 | #line 3 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 32 | using Microsoft.AspNetCore.Components.Routing; 33 | 34 | #line default 35 | #line hidden 36 | #nullable disable 37 | #nullable restore 38 | #line 4 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 39 | using Microsoft.AspNetCore.Components.Web; 40 | 41 | #line default 42 | #line hidden 43 | #nullable disable 44 | #nullable restore 45 | #line 5 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 46 | using Microsoft.JSInterop; 47 | 48 | #line default 49 | #line hidden 50 | #nullable disable 51 | #nullable restore 52 | #line 6 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 53 | using BlazorRealTime.Blazor; 54 | 55 | #line default 56 | #line hidden 57 | #nullable disable 58 | #nullable restore 59 | #line 7 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 60 | using BlazorRealTime.Blazor.Shared; 61 | 62 | #line default 63 | #line hidden 64 | #nullable disable 65 | [Microsoft.AspNetCore.Components.RouteAttribute("/counter")] 66 | public partial class Counter : Microsoft.AspNetCore.Components.ComponentBase 67 | { 68 | #pragma warning disable 1998 69 | protected override void BuildRenderTree(Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder __builder) 70 | { 71 | } 72 | #pragma warning restore 1998 73 | #nullable restore 74 | #line 9 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Pages\Counter.razor" 75 | 76 | private int currentCount = 0; 77 | 78 | private void IncrementCount() 79 | { 80 | currentCount++; 81 | } 82 | 83 | #line default 84 | #line hidden 85 | #nullable disable 86 | } 87 | } 88 | #pragma warning restore 1591 89 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/RazorDeclaration/Shared/NavMenu.razor.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Shared\NavMenu.razor" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "cf6bcc344fc56ff06608778a1c7ddb8e96fb145f" 2 | // 3 | #pragma warning disable 1591 4 | #pragma warning disable 0414 5 | #pragma warning disable 0649 6 | #pragma warning disable 0169 7 | 8 | namespace BlazorRealTime.Blazor.Shared 9 | { 10 | #line hidden 11 | using System; 12 | using System.Collections.Generic; 13 | using System.Linq; 14 | using System.Threading.Tasks; 15 | using Microsoft.AspNetCore.Components; 16 | #nullable restore 17 | #line 1 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 18 | using System.Net.Http; 19 | 20 | #line default 21 | #line hidden 22 | #nullable disable 23 | #nullable restore 24 | #line 2 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 25 | using Microsoft.AspNetCore.Components.Forms; 26 | 27 | #line default 28 | #line hidden 29 | #nullable disable 30 | #nullable restore 31 | #line 3 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 32 | using Microsoft.AspNetCore.Components.Routing; 33 | 34 | #line default 35 | #line hidden 36 | #nullable disable 37 | #nullable restore 38 | #line 4 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 39 | using Microsoft.AspNetCore.Components.Web; 40 | 41 | #line default 42 | #line hidden 43 | #nullable disable 44 | #nullable restore 45 | #line 5 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 46 | using Microsoft.JSInterop; 47 | 48 | #line default 49 | #line hidden 50 | #nullable disable 51 | #nullable restore 52 | #line 6 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 53 | using BlazorRealTime.Blazor; 54 | 55 | #line default 56 | #line hidden 57 | #nullable disable 58 | #nullable restore 59 | #line 7 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 60 | using BlazorRealTime.Blazor.Shared; 61 | 62 | #line default 63 | #line hidden 64 | #nullable disable 65 | public partial class NavMenu : Microsoft.AspNetCore.Components.ComponentBase 66 | { 67 | #pragma warning disable 1998 68 | protected override void BuildRenderTree(Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder __builder) 69 | { 70 | } 71 | #pragma warning restore 1998 72 | #nullable restore 73 | #line 28 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Shared\NavMenu.razor" 74 | 75 | private bool collapseNavMenu = true; 76 | 77 | private string NavMenuCssClass => collapseNavMenu ? "collapse" : null; 78 | 79 | private void ToggleNavMenu() 80 | { 81 | collapseNavMenu = !collapseNavMenu; 82 | } 83 | 84 | #line default 85 | #line hidden 86 | #nullable disable 87 | } 88 | } 89 | #pragma warning restore 1591 90 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/blazor/linker.typegranularityconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/BlazorRealTime.Blazor.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "C:\\Users\\dell\\Documents\\AK Academy\\Blazor Topics\\SignalR\\BlazorRealTime\\BlazorRealTime.Blazor\\BlazorRealTime.Blazor.csproj": {} 5 | }, 6 | "projects": { 7 | "C:\\Users\\dell\\Documents\\AK Academy\\Blazor Topics\\SignalR\\BlazorRealTime\\BlazorRealTime.Blazor\\BlazorRealTime.Blazor.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "C:\\Users\\dell\\Documents\\AK Academy\\Blazor Topics\\SignalR\\BlazorRealTime\\BlazorRealTime.Blazor\\BlazorRealTime.Blazor.csproj", 11 | "projectName": "BlazorRealTime.Blazor", 12 | "projectPath": "C:\\Users\\dell\\Documents\\AK Academy\\Blazor Topics\\SignalR\\BlazorRealTime\\BlazorRealTime.Blazor\\BlazorRealTime.Blazor.csproj", 13 | "packagesPath": "C:\\Users\\dell\\.nuget\\packages\\", 14 | "outputPath": "C:\\Users\\dell\\Documents\\AK Academy\\Blazor Topics\\SignalR\\BlazorRealTime\\BlazorRealTime.Blazor\\obj\\", 15 | "projectStyle": "PackageReference", 16 | "fallbackFolders": [ 17 | "C:\\Microsoft\\Xamarin\\NuGet\\", 18 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 19 | ], 20 | "configFilePaths": [ 21 | "C:\\Users\\dell\\AppData\\Roaming\\NuGet\\NuGet.Config", 22 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config", 23 | "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config" 24 | ], 25 | "originalTargetFrameworks": [ 26 | "netstandard2.1" 27 | ], 28 | "sources": { 29 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 30 | "https://api.nuget.org/v3/index.json": {} 31 | }, 32 | "frameworks": { 33 | "netstandard2.1": { 34 | "projectReferences": {} 35 | } 36 | }, 37 | "warningProperties": { 38 | "warnAsError": [ 39 | "NU1605" 40 | ] 41 | } 42 | }, 43 | "frameworks": { 44 | "netstandard2.1": { 45 | "dependencies": { 46 | "Microsoft.AspNetCore.Blazor": { 47 | "target": "Package", 48 | "version": "[3.2.0-preview1.20073.1, )" 49 | }, 50 | "Microsoft.AspNetCore.Blazor.Build": { 51 | "suppressParent": "All", 52 | "target": "Package", 53 | "version": "[3.2.0-preview1.20073.1, )" 54 | }, 55 | "Microsoft.AspNetCore.Blazor.DevServer": { 56 | "suppressParent": "All", 57 | "target": "Package", 58 | "version": "[3.2.0-preview1.20073.1, )" 59 | }, 60 | "Microsoft.AspNetCore.Blazor.HttpClient": { 61 | "target": "Package", 62 | "version": "[3.2.0-preview1.20073.1, )" 63 | }, 64 | "Microsoft.AspNetCore.SignalR.Client": { 65 | "target": "Package", 66 | "version": "[3.1.2, )" 67 | } 68 | }, 69 | "imports": [ 70 | "net461", 71 | "net462", 72 | "net47", 73 | "net471", 74 | "net472", 75 | "net48" 76 | ], 77 | "assetTargetFallback": true, 78 | "warn": true, 79 | "frameworkReferences": { 80 | "NETStandard.Library": { 81 | "privateAssets": "all" 82 | } 83 | }, 84 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.102\\RuntimeIdentifierGraph.json" 85 | } 86 | } 87 | } 88 | } 89 | } -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/RazorDeclaration/Pages/FetchData.razor.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Pages\FetchData.razor" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "b6a77d898b4dcc5cb936f9220179c723cc24f494" 2 | // 3 | #pragma warning disable 1591 4 | #pragma warning disable 0414 5 | #pragma warning disable 0649 6 | #pragma warning disable 0169 7 | 8 | namespace BlazorRealTime.Blazor.Pages 9 | { 10 | #line hidden 11 | using System; 12 | using System.Collections.Generic; 13 | using System.Linq; 14 | using System.Threading.Tasks; 15 | using Microsoft.AspNetCore.Components; 16 | #nullable restore 17 | #line 1 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 18 | using System.Net.Http; 19 | 20 | #line default 21 | #line hidden 22 | #nullable disable 23 | #nullable restore 24 | #line 2 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 25 | using Microsoft.AspNetCore.Components.Forms; 26 | 27 | #line default 28 | #line hidden 29 | #nullable disable 30 | #nullable restore 31 | #line 3 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 32 | using Microsoft.AspNetCore.Components.Routing; 33 | 34 | #line default 35 | #line hidden 36 | #nullable disable 37 | #nullable restore 38 | #line 4 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 39 | using Microsoft.AspNetCore.Components.Web; 40 | 41 | #line default 42 | #line hidden 43 | #nullable disable 44 | #nullable restore 45 | #line 5 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 46 | using Microsoft.JSInterop; 47 | 48 | #line default 49 | #line hidden 50 | #nullable disable 51 | #nullable restore 52 | #line 6 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 53 | using BlazorRealTime.Blazor; 54 | 55 | #line default 56 | #line hidden 57 | #nullable disable 58 | #nullable restore 59 | #line 7 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 60 | using BlazorRealTime.Blazor.Shared; 61 | 62 | #line default 63 | #line hidden 64 | #nullable disable 65 | [Microsoft.AspNetCore.Components.RouteAttribute("/fetchdata")] 66 | public partial class FetchData : Microsoft.AspNetCore.Components.ComponentBase 67 | { 68 | #pragma warning disable 1998 69 | protected override void BuildRenderTree(Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder __builder) 70 | { 71 | } 72 | #pragma warning restore 1998 73 | #nullable restore 74 | #line 37 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Pages\FetchData.razor" 75 | 76 | private WeatherForecast[] forecasts; 77 | 78 | protected override async Task OnInitializedAsync() 79 | { 80 | forecasts = await Http.GetJsonAsync("sample-data/weather.json"); 81 | } 82 | 83 | public class WeatherForecast 84 | { 85 | public DateTime Date { get; set; } 86 | 87 | public int TemperatureC { get; set; } 88 | 89 | public string Summary { get; set; } 90 | 91 | public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); 92 | } 93 | 94 | #line default 95 | #line hidden 96 | #nullable disable 97 | [global::Microsoft.AspNetCore.Components.InjectAttribute] private HttpClient Http { get; set; } 98 | } 99 | } 100 | #pragma warning restore 1591 101 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/wwwroot/css/open-iconic/README.md: -------------------------------------------------------------------------------- 1 | [Open Iconic v1.1.1](http://useiconic.com/open) 2 | =========== 3 | 4 | ### Open Iconic is the open source sibling of [Iconic](http://useiconic.com). It is a hyper-legible collection of 223 icons with a tiny footprint—ready to use with Bootstrap and Foundation. [View the collection](http://useiconic.com/open#icons) 5 | 6 | 7 | 8 | ## What's in Open Iconic? 9 | 10 | * 223 icons designed to be legible down to 8 pixels 11 | * Super-light SVG files - 61.8 for the entire set 12 | * SVG sprite—the modern replacement for icon fonts 13 | * Webfont (EOT, OTF, SVG, TTF, WOFF), PNG and WebP formats 14 | * Webfont stylesheets (including versions for Bootstrap and Foundation) in CSS, LESS, SCSS and Stylus formats 15 | * PNG and WebP raster images in 8px, 16px, 24px, 32px, 48px and 64px. 16 | 17 | 18 | ## Getting Started 19 | 20 | #### For code samples and everything else you need to get started with Open Iconic, check out our [Icons](http://useiconic.com/open#icons) and [Reference](http://useiconic.com/open#reference) sections. 21 | 22 | ### General Usage 23 | 24 | #### Using Open Iconic's SVGs 25 | 26 | We like SVGs and we think they're the way to display icons on the web. Since Open Iconic are just basic SVGs, we suggest you display them like you would any other image (don't forget the `alt` attribute). 27 | 28 | ``` 29 | icon name 30 | ``` 31 | 32 | #### Using Open Iconic's SVG Sprite 33 | 34 | Open Iconic also comes in a SVG sprite which allows you to display all the icons in the set with a single request. It's like an icon font, without being a hack. 35 | 36 | Adding an icon from an SVG sprite is a little different than what you're used to, but it's still a piece of cake. *Tip: To make your icons easily style able, we suggest adding a general class to the* `` *tag and a unique class name for each different icon in the* `` *tag.* 37 | 38 | ``` 39 | 40 | 41 | 42 | ``` 43 | 44 | Sizing icons only needs basic CSS. All the icons are in a square format, so just set the `` tag with equal width and height dimensions. 45 | 46 | ``` 47 | .icon { 48 | width: 16px; 49 | height: 16px; 50 | } 51 | ``` 52 | 53 | Coloring icons is even easier. All you need to do is set the `fill` rule on the `` tag. 54 | 55 | ``` 56 | .icon-account-login { 57 | fill: #f00; 58 | } 59 | ``` 60 | 61 | To learn more about SVG Sprites, read [Chris Coyier's guide](http://css-tricks.com/svg-sprites-use-better-icon-fonts/). 62 | 63 | #### Using Open Iconic's Icon Font... 64 | 65 | 66 | ##### …with Bootstrap 67 | 68 | You can find our Bootstrap stylesheets in `font/css/open-iconic-bootstrap.{css, less, scss, styl}` 69 | 70 | 71 | ``` 72 | 73 | ``` 74 | 75 | 76 | ``` 77 | 78 | ``` 79 | 80 | ##### …with Foundation 81 | 82 | You can find our Foundation stylesheets in `font/css/open-iconic-foundation.{css, less, scss, styl}` 83 | 84 | ``` 85 | 86 | ``` 87 | 88 | 89 | ``` 90 | 91 | ``` 92 | 93 | ##### …on its own 94 | 95 | You can find our default stylesheets in `font/css/open-iconic.{css, less, scss, styl}` 96 | 97 | ``` 98 | 99 | ``` 100 | 101 | ``` 102 | 103 | ``` 104 | 105 | 106 | ## License 107 | 108 | ### Icons 109 | 110 | All code (including SVG markup) is under the [MIT License](http://opensource.org/licenses/MIT). 111 | 112 | ### Fonts 113 | 114 | All fonts are under the [SIL Licensed](http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web). 115 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/Razor/Shared/MainLayout.razor.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Shared\MainLayout.razor" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "fd6d20d95fdaaf0db83a6a3154434357438fcf15" 2 | // 3 | #pragma warning disable 1591 4 | namespace BlazorRealTime.Blazor.Shared 5 | { 6 | #line hidden 7 | using System; 8 | using System.Collections.Generic; 9 | using System.Linq; 10 | using System.Threading.Tasks; 11 | using Microsoft.AspNetCore.Components; 12 | #nullable restore 13 | #line 1 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 14 | using System.Net.Http; 15 | 16 | #line default 17 | #line hidden 18 | #nullable disable 19 | #nullable restore 20 | #line 2 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 21 | using Microsoft.AspNetCore.Components.Forms; 22 | 23 | #line default 24 | #line hidden 25 | #nullable disable 26 | #nullable restore 27 | #line 3 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 28 | using Microsoft.AspNetCore.Components.Routing; 29 | 30 | #line default 31 | #line hidden 32 | #nullable disable 33 | #nullable restore 34 | #line 4 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 35 | using Microsoft.AspNetCore.Components.Web; 36 | 37 | #line default 38 | #line hidden 39 | #nullable disable 40 | #nullable restore 41 | #line 5 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 42 | using Microsoft.JSInterop; 43 | 44 | #line default 45 | #line hidden 46 | #nullable disable 47 | #nullable restore 48 | #line 6 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 49 | using BlazorRealTime.Blazor; 50 | 51 | #line default 52 | #line hidden 53 | #nullable disable 54 | #nullable restore 55 | #line 7 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 56 | using BlazorRealTime.Blazor.Shared; 57 | 58 | #line default 59 | #line hidden 60 | #nullable disable 61 | public partial class MainLayout : LayoutComponentBase 62 | { 63 | #pragma warning disable 1998 64 | protected override void BuildRenderTree(Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder __builder) 65 | { 66 | __builder.OpenElement(0, "div"); 67 | __builder.AddAttribute(1, "class", "sidebar"); 68 | __builder.AddMarkupContent(2, "\r\n "); 69 | __builder.OpenComponent(3); 70 | __builder.CloseComponent(); 71 | __builder.AddMarkupContent(4, "\r\n"); 72 | __builder.CloseElement(); 73 | __builder.AddMarkupContent(5, "\r\n\r\n"); 74 | __builder.OpenElement(6, "div"); 75 | __builder.AddAttribute(7, "class", "main"); 76 | __builder.AddMarkupContent(8, "\r\n "); 77 | __builder.AddMarkupContent(9, "
\r\n About\r\n
\r\n\r\n "); 78 | __builder.OpenElement(10, "div"); 79 | __builder.AddAttribute(11, "class", "content px-4"); 80 | __builder.AddMarkupContent(12, "\r\n "); 81 | __builder.AddContent(13, 82 | #nullable restore 83 | #line 13 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Shared\MainLayout.razor" 84 | Body 85 | 86 | #line default 87 | #line hidden 88 | #nullable disable 89 | ); 90 | __builder.AddMarkupContent(14, "\r\n "); 91 | __builder.CloseElement(); 92 | __builder.AddMarkupContent(15, "\r\n"); 93 | __builder.CloseElement(); 94 | } 95 | #pragma warning restore 1998 96 | } 97 | } 98 | #pragma warning restore 1591 99 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/Razor/Shared/SurveyPrompt.razor.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Shared\SurveyPrompt.razor" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "3ce8fd3174d26368cee1f2222225d1b6d9193062" 2 | // 3 | #pragma warning disable 1591 4 | namespace BlazorRealTime.Blazor.Shared 5 | { 6 | #line hidden 7 | using System; 8 | using System.Collections.Generic; 9 | using System.Linq; 10 | using System.Threading.Tasks; 11 | using Microsoft.AspNetCore.Components; 12 | #nullable restore 13 | #line 1 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 14 | using System.Net.Http; 15 | 16 | #line default 17 | #line hidden 18 | #nullable disable 19 | #nullable restore 20 | #line 2 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 21 | using Microsoft.AspNetCore.Components.Forms; 22 | 23 | #line default 24 | #line hidden 25 | #nullable disable 26 | #nullable restore 27 | #line 3 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 28 | using Microsoft.AspNetCore.Components.Routing; 29 | 30 | #line default 31 | #line hidden 32 | #nullable disable 33 | #nullable restore 34 | #line 4 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 35 | using Microsoft.AspNetCore.Components.Web; 36 | 37 | #line default 38 | #line hidden 39 | #nullable disable 40 | #nullable restore 41 | #line 5 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 42 | using Microsoft.JSInterop; 43 | 44 | #line default 45 | #line hidden 46 | #nullable disable 47 | #nullable restore 48 | #line 6 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 49 | using BlazorRealTime.Blazor; 50 | 51 | #line default 52 | #line hidden 53 | #nullable disable 54 | #nullable restore 55 | #line 7 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 56 | using BlazorRealTime.Blazor.Shared; 57 | 58 | #line default 59 | #line hidden 60 | #nullable disable 61 | public partial class SurveyPrompt : Microsoft.AspNetCore.Components.ComponentBase 62 | { 63 | #pragma warning disable 1998 64 | protected override void BuildRenderTree(Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder __builder) 65 | { 66 | __builder.OpenElement(0, "div"); 67 | __builder.AddAttribute(1, "class", "alert alert-secondary mt-4"); 68 | __builder.AddAttribute(2, "role", "alert"); 69 | __builder.AddMarkupContent(3, "\r\n \r\n "); 70 | __builder.OpenElement(4, "strong"); 71 | __builder.AddContent(5, 72 | #nullable restore 73 | #line 3 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Shared\SurveyPrompt.razor" 74 | Title 75 | 76 | #line default 77 | #line hidden 78 | #nullable disable 79 | ); 80 | __builder.CloseElement(); 81 | __builder.AddMarkupContent(6, "\r\n\r\n "); 82 | __builder.AddMarkupContent(7, "\r\n Please take our\r\n brief survey\r\n \r\n and tell us what you think.\r\n"); 83 | __builder.CloseElement(); 84 | } 85 | #pragma warning restore 1998 86 | #nullable restore 87 | #line 12 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Shared\SurveyPrompt.razor" 88 | 89 | // Demonstrates how a parent component can supply parameters 90 | [Parameter] 91 | public string Title { get; set; } 92 | 93 | #line default 94 | #line hidden 95 | #nullable disable 96 | } 97 | } 98 | #pragma warning restore 1591 99 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/wwwroot/css/site.css: -------------------------------------------------------------------------------- 1 | @import url('open-iconic/font/css/open-iconic-bootstrap.min.css'); 2 | 3 | html, body { 4 | font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; 5 | } 6 | 7 | a, .btn-link { 8 | color: #0366d6; 9 | } 10 | 11 | .btn-primary { 12 | color: #fff; 13 | background-color: #1b6ec2; 14 | border-color: #1861ac; 15 | } 16 | 17 | app { 18 | position: relative; 19 | display: flex; 20 | flex-direction: column; 21 | } 22 | 23 | .top-row { 24 | height: 3.5rem; 25 | display: flex; 26 | align-items: center; 27 | } 28 | 29 | .main { 30 | flex: 1; 31 | } 32 | 33 | .main .top-row { 34 | background-color: #f7f7f7; 35 | border-bottom: 1px solid #d6d5d5; 36 | justify-content: flex-end; 37 | } 38 | 39 | .main .top-row > a, .main .top-row .btn-link { 40 | white-space: nowrap; 41 | margin-left: 1.5rem; 42 | } 43 | 44 | .main .top-row a:first-child { 45 | overflow: hidden; 46 | text-overflow: ellipsis; 47 | } 48 | 49 | .sidebar { 50 | background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%); 51 | } 52 | 53 | .sidebar .top-row { 54 | background-color: rgba(0,0,0,0.4); 55 | } 56 | 57 | .sidebar .navbar-brand { 58 | font-size: 1.1rem; 59 | } 60 | 61 | .sidebar .oi { 62 | width: 2rem; 63 | font-size: 1.1rem; 64 | vertical-align: text-top; 65 | top: -2px; 66 | } 67 | 68 | .sidebar .nav-item { 69 | font-size: 0.9rem; 70 | padding-bottom: 0.5rem; 71 | } 72 | 73 | .sidebar .nav-item:first-of-type { 74 | padding-top: 1rem; 75 | } 76 | 77 | .sidebar .nav-item:last-of-type { 78 | padding-bottom: 1rem; 79 | } 80 | 81 | .sidebar .nav-item a { 82 | color: #d7d7d7; 83 | border-radius: 4px; 84 | height: 3rem; 85 | display: flex; 86 | align-items: center; 87 | line-height: 3rem; 88 | } 89 | 90 | .sidebar .nav-item a.active { 91 | background-color: rgba(255,255,255,0.25); 92 | color: white; 93 | } 94 | 95 | .sidebar .nav-item a:hover { 96 | background-color: rgba(255,255,255,0.1); 97 | color: white; 98 | } 99 | 100 | .content { 101 | padding-top: 1.1rem; 102 | } 103 | 104 | .navbar-toggler { 105 | background-color: rgba(255, 255, 255, 0.1); 106 | } 107 | 108 | .valid.modified:not([type=checkbox]) { 109 | outline: 1px solid #26b050; 110 | } 111 | 112 | .invalid { 113 | outline: 1px solid red; 114 | } 115 | 116 | .validation-message { 117 | color: red; 118 | } 119 | 120 | #blazor-error-ui { 121 | background: lightyellow; 122 | bottom: 0; 123 | box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2); 124 | display: none; 125 | left: 0; 126 | padding: 0.6rem 1.25rem 0.7rem 1.25rem; 127 | position: fixed; 128 | width: 100%; 129 | z-index: 1000; 130 | } 131 | 132 | #blazor-error-ui .dismiss { 133 | cursor: pointer; 134 | position: absolute; 135 | right: 0.75rem; 136 | top: 0.5rem; 137 | } 138 | 139 | @media (max-width: 767.98px) { 140 | .main .top-row:not(.auth) { 141 | display: none; 142 | } 143 | 144 | .main .top-row.auth { 145 | justify-content: space-between; 146 | } 147 | 148 | .main .top-row a, .main .top-row .btn-link { 149 | margin-left: 0; 150 | } 151 | } 152 | 153 | @media (min-width: 768px) { 154 | app { 155 | flex-direction: row; 156 | } 157 | 158 | .sidebar { 159 | width: 250px; 160 | height: 100vh; 161 | position: sticky; 162 | top: 0; 163 | } 164 | 165 | .main .top-row { 166 | position: sticky; 167 | top: 0; 168 | } 169 | 170 | .main > div { 171 | padding-left: 2rem !important; 172 | padding-right: 1.5rem !important; 173 | } 174 | 175 | .navbar-toggler { 176 | display: none; 177 | } 178 | 179 | .sidebar .collapse { 180 | /* Never collapse the sidebar for wide screens */ 181 | display: block; 182 | } 183 | } 184 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/wwwroot/css/open-iconic/FONT-LICENSE: -------------------------------------------------------------------------------- 1 | SIL OPEN FONT LICENSE Version 1.1 2 | 3 | Copyright (c) 2014 Waybury 4 | 5 | PREAMBLE 6 | The goals of the Open Font License (OFL) are to stimulate worldwide 7 | development of collaborative font projects, to support the font creation 8 | efforts of academic and linguistic communities, and to provide a free and 9 | open framework in which fonts may be shared and improved in partnership 10 | with others. 11 | 12 | The OFL allows the licensed fonts to be used, studied, modified and 13 | redistributed freely as long as they are not sold by themselves. The 14 | fonts, including any derivative works, can be bundled, embedded, 15 | redistributed and/or sold with any software provided that any reserved 16 | names are not used by derivative works. The fonts and derivatives, 17 | however, cannot be released under any other type of license. The 18 | requirement for fonts to remain under this license does not apply 19 | to any document created using the fonts or their derivatives. 20 | 21 | DEFINITIONS 22 | "Font Software" refers to the set of files released by the Copyright 23 | Holder(s) under this license and clearly marked as such. This may 24 | include source files, build scripts and documentation. 25 | 26 | "Reserved Font Name" refers to any names specified as such after the 27 | copyright statement(s). 28 | 29 | "Original Version" refers to the collection of Font Software components as 30 | distributed by the Copyright Holder(s). 31 | 32 | "Modified Version" refers to any derivative made by adding to, deleting, 33 | or substituting -- in part or in whole -- any of the components of the 34 | Original Version, by changing formats or by porting the Font Software to a 35 | new environment. 36 | 37 | "Author" refers to any designer, engineer, programmer, technical 38 | writer or other person who contributed to the Font Software. 39 | 40 | PERMISSION & CONDITIONS 41 | Permission is hereby granted, free of charge, to any person obtaining 42 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 43 | redistribute, and sell modified and unmodified copies of the Font 44 | Software, subject to the following conditions: 45 | 46 | 1) Neither the Font Software nor any of its individual components, 47 | in Original or Modified Versions, may be sold by itself. 48 | 49 | 2) Original or Modified Versions of the Font Software may be bundled, 50 | redistributed and/or sold with any software, provided that each copy 51 | contains the above copyright notice and this license. These can be 52 | included either as stand-alone text files, human-readable headers or 53 | in the appropriate machine-readable metadata fields within text or 54 | binary files as long as those fields can be easily viewed by the user. 55 | 56 | 3) No Modified Version of the Font Software may use the Reserved Font 57 | Name(s) unless explicit written permission is granted by the corresponding 58 | Copyright Holder. This restriction only applies to the primary font name as 59 | presented to the users. 60 | 61 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 62 | Software shall not be used to promote, endorse or advertise any 63 | Modified Version, except to acknowledge the contribution(s) of the 64 | Copyright Holder(s) and the Author(s) or with their explicit written 65 | permission. 66 | 67 | 5) The Font Software, modified or unmodified, in part or in whole, 68 | must be distributed entirely under this license, and must not be 69 | distributed under any other license. The requirement for fonts to 70 | remain under this license does not apply to any document created 71 | using the Font Software. 72 | 73 | TERMINATION 74 | This license becomes null and void if any of the above conditions are 75 | not met. 76 | 77 | DISCLAIMER 78 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 79 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 80 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 81 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 82 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 83 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 84 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 85 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 86 | OTHER DEALINGS IN THE FONT SOFTWARE. 87 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/RazorDeclaration/Pages/Index.razor.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Pages\Index.razor" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "5db31838b7f321166d23ee2b88e95ee089feda9a" 2 | // 3 | #pragma warning disable 1591 4 | #pragma warning disable 0414 5 | #pragma warning disable 0649 6 | #pragma warning disable 0169 7 | 8 | namespace BlazorRealTime.Blazor.Pages 9 | { 10 | #line hidden 11 | using System; 12 | using System.Collections.Generic; 13 | using System.Linq; 14 | using System.Threading.Tasks; 15 | using Microsoft.AspNetCore.Components; 16 | #nullable restore 17 | #line 1 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 18 | using System.Net.Http; 19 | 20 | #line default 21 | #line hidden 22 | #nullable disable 23 | #nullable restore 24 | #line 2 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 25 | using Microsoft.AspNetCore.Components.Forms; 26 | 27 | #line default 28 | #line hidden 29 | #nullable disable 30 | #nullable restore 31 | #line 3 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 32 | using Microsoft.AspNetCore.Components.Routing; 33 | 34 | #line default 35 | #line hidden 36 | #nullable disable 37 | #nullable restore 38 | #line 4 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 39 | using Microsoft.AspNetCore.Components.Web; 40 | 41 | #line default 42 | #line hidden 43 | #nullable disable 44 | #nullable restore 45 | #line 5 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 46 | using Microsoft.JSInterop; 47 | 48 | #line default 49 | #line hidden 50 | #nullable disable 51 | #nullable restore 52 | #line 6 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 53 | using BlazorRealTime.Blazor; 54 | 55 | #line default 56 | #line hidden 57 | #nullable disable 58 | #nullable restore 59 | #line 7 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 60 | using BlazorRealTime.Blazor.Shared; 61 | 62 | #line default 63 | #line hidden 64 | #nullable disable 65 | #nullable restore 66 | #line 2 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Pages\Index.razor" 67 | using Microsoft.AspNetCore.SignalR.Client; 68 | 69 | #line default 70 | #line hidden 71 | #nullable disable 72 | [Microsoft.AspNetCore.Components.RouteAttribute("/")] 73 | public partial class Index : Microsoft.AspNetCore.Components.ComponentBase 74 | { 75 | #pragma warning disable 1998 76 | protected override void BuildRenderTree(Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder __builder) 77 | { 78 | } 79 | #pragma warning restore 1998 80 | #nullable restore 81 | #line 18 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Pages\Index.razor" 82 | 83 | string url = "http://localhost:63945/notificationhub"; 84 | 85 | HubConnection _connection = null; 86 | bool isConnected = false; 87 | string connectionStatus = "Closed"; 88 | 89 | List notifications = new List(); 90 | 91 | private async Task ConnectToServer() 92 | { 93 | _connection = new HubConnectionBuilder() 94 | .WithUrl(url) 95 | .Build(); 96 | 97 | await _connection.StartAsync(); 98 | isConnected = true; 99 | connectionStatus = "Connected :-)"; 100 | 101 | _connection.Closed += async (s) => 102 | { 103 | isConnected = false; 104 | connectionStatus = "Disconnected"; 105 | await _connection.StartAsync(); 106 | isConnected = true; 107 | }; 108 | 109 | _connection.On("notification", m => 110 | { 111 | notifications.Add(m); 112 | StateHasChanged(); 113 | }); 114 | } 115 | 116 | 117 | #line default 118 | #line hidden 119 | #nullable disable 120 | } 121 | } 122 | #pragma warning restore 1591 123 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/Razor/Pages/Counter.razor.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Pages\Counter.razor" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "5456520839664fbbeb726a4af0946602a9d68f5c" 2 | // 3 | #pragma warning disable 1591 4 | namespace BlazorRealTime.Blazor.Pages 5 | { 6 | #line hidden 7 | using System; 8 | using System.Collections.Generic; 9 | using System.Linq; 10 | using System.Threading.Tasks; 11 | using Microsoft.AspNetCore.Components; 12 | #nullable restore 13 | #line 1 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 14 | using System.Net.Http; 15 | 16 | #line default 17 | #line hidden 18 | #nullable disable 19 | #nullable restore 20 | #line 2 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 21 | using Microsoft.AspNetCore.Components.Forms; 22 | 23 | #line default 24 | #line hidden 25 | #nullable disable 26 | #nullable restore 27 | #line 3 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 28 | using Microsoft.AspNetCore.Components.Routing; 29 | 30 | #line default 31 | #line hidden 32 | #nullable disable 33 | #nullable restore 34 | #line 4 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 35 | using Microsoft.AspNetCore.Components.Web; 36 | 37 | #line default 38 | #line hidden 39 | #nullable disable 40 | #nullable restore 41 | #line 5 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 42 | using Microsoft.JSInterop; 43 | 44 | #line default 45 | #line hidden 46 | #nullable disable 47 | #nullable restore 48 | #line 6 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 49 | using BlazorRealTime.Blazor; 50 | 51 | #line default 52 | #line hidden 53 | #nullable disable 54 | #nullable restore 55 | #line 7 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 56 | using BlazorRealTime.Blazor.Shared; 57 | 58 | #line default 59 | #line hidden 60 | #nullable disable 61 | [Microsoft.AspNetCore.Components.RouteAttribute("/counter")] 62 | public partial class Counter : Microsoft.AspNetCore.Components.ComponentBase 63 | { 64 | #pragma warning disable 1998 65 | protected override void BuildRenderTree(Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder __builder) 66 | { 67 | __builder.AddMarkupContent(0, "

Counter

\r\n\r\n"); 68 | __builder.OpenElement(1, "p"); 69 | __builder.AddContent(2, "Current count: "); 70 | __builder.AddContent(3, 71 | #nullable restore 72 | #line 5 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Pages\Counter.razor" 73 | currentCount 74 | 75 | #line default 76 | #line hidden 77 | #nullable disable 78 | ); 79 | __builder.CloseElement(); 80 | __builder.AddMarkupContent(4, "\r\n\r\n"); 81 | __builder.OpenElement(5, "button"); 82 | __builder.AddAttribute(6, "class", "btn btn-primary"); 83 | __builder.AddAttribute(7, "onclick", Microsoft.AspNetCore.Components.EventCallback.Factory.Create(this, 84 | #nullable restore 85 | #line 7 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Pages\Counter.razor" 86 | IncrementCount 87 | 88 | #line default 89 | #line hidden 90 | #nullable disable 91 | )); 92 | __builder.AddContent(8, "Click me"); 93 | __builder.CloseElement(); 94 | } 95 | #pragma warning restore 1998 96 | #nullable restore 97 | #line 9 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Pages\Counter.razor" 98 | 99 | private int currentCount = 0; 100 | 101 | private void IncrementCount() 102 | { 103 | currentCount++; 104 | } 105 | 106 | #line default 107 | #line hidden 108 | #nullable disable 109 | } 110 | } 111 | #pragma warning restore 1591 112 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/Razor/App.razor.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\App.razor" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "5760763b9b9a4230bcc57d90540e9f5b9fa81a79" 2 | // 3 | #pragma warning disable 1591 4 | namespace BlazorRealTime.Blazor 5 | { 6 | #line hidden 7 | using System; 8 | using System.Collections.Generic; 9 | using System.Linq; 10 | using System.Threading.Tasks; 11 | using Microsoft.AspNetCore.Components; 12 | #nullable restore 13 | #line 1 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 14 | using System.Net.Http; 15 | 16 | #line default 17 | #line hidden 18 | #nullable disable 19 | #nullable restore 20 | #line 2 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 21 | using Microsoft.AspNetCore.Components.Forms; 22 | 23 | #line default 24 | #line hidden 25 | #nullable disable 26 | #nullable restore 27 | #line 3 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 28 | using Microsoft.AspNetCore.Components.Routing; 29 | 30 | #line default 31 | #line hidden 32 | #nullable disable 33 | #nullable restore 34 | #line 4 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 35 | using Microsoft.AspNetCore.Components.Web; 36 | 37 | #line default 38 | #line hidden 39 | #nullable disable 40 | #nullable restore 41 | #line 5 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 42 | using Microsoft.JSInterop; 43 | 44 | #line default 45 | #line hidden 46 | #nullable disable 47 | #nullable restore 48 | #line 6 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 49 | using BlazorRealTime.Blazor; 50 | 51 | #line default 52 | #line hidden 53 | #nullable disable 54 | #nullable restore 55 | #line 7 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 56 | using BlazorRealTime.Blazor.Shared; 57 | 58 | #line default 59 | #line hidden 60 | #nullable disable 61 | public partial class App : Microsoft.AspNetCore.Components.ComponentBase 62 | { 63 | #pragma warning disable 1998 64 | protected override void BuildRenderTree(Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder __builder) 65 | { 66 | __builder.OpenComponent(0); 67 | __builder.AddAttribute(1, "AppAssembly", Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck( 68 | #nullable restore 69 | #line 1 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\App.razor" 70 | typeof(Program).Assembly 71 | 72 | #line default 73 | #line hidden 74 | #nullable disable 75 | )); 76 | __builder.AddAttribute(2, "Found", (Microsoft.AspNetCore.Components.RenderFragment)((routeData) => (__builder2) => { 77 | __builder2.AddMarkupContent(3, "\r\n "); 78 | __builder2.OpenComponent(4); 79 | __builder2.AddAttribute(5, "RouteData", Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck( 80 | #nullable restore 81 | #line 3 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\App.razor" 82 | routeData 83 | 84 | #line default 85 | #line hidden 86 | #nullable disable 87 | )); 88 | __builder2.AddAttribute(6, "DefaultLayout", Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck( 89 | #nullable restore 90 | #line 3 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\App.razor" 91 | typeof(MainLayout) 92 | 93 | #line default 94 | #line hidden 95 | #nullable disable 96 | )); 97 | __builder2.CloseComponent(); 98 | __builder2.AddMarkupContent(7, "\r\n "); 99 | } 100 | )); 101 | __builder.AddAttribute(8, "NotFound", (Microsoft.AspNetCore.Components.RenderFragment)((__builder2) => { 102 | __builder2.AddMarkupContent(9, "\r\n "); 103 | __builder2.OpenComponent(10); 104 | __builder2.AddAttribute(11, "Layout", Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck( 105 | #nullable restore 106 | #line 6 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\App.razor" 107 | typeof(MainLayout) 108 | 109 | #line default 110 | #line hidden 111 | #nullable disable 112 | )); 113 | __builder2.AddAttribute(12, "ChildContent", (Microsoft.AspNetCore.Components.RenderFragment)((__builder3) => { 114 | __builder3.AddMarkupContent(13, "\r\n "); 115 | __builder3.AddMarkupContent(14, "

Sorry, there\'s nothing at this address.

\r\n "); 116 | } 117 | )); 118 | __builder2.CloseComponent(); 119 | __builder2.AddMarkupContent(15, "\r\n "); 120 | } 121 | )); 122 | __builder.CloseComponent(); 123 | } 124 | #pragma warning restore 1998 125 | } 126 | } 127 | #pragma warning restore 1591 128 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/Razor/Pages/Index.razor.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Pages\Index.razor" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "5db31838b7f321166d23ee2b88e95ee089feda9a" 2 | // 3 | #pragma warning disable 1591 4 | namespace BlazorRealTime.Blazor.Pages 5 | { 6 | #line hidden 7 | using System; 8 | using System.Collections.Generic; 9 | using System.Linq; 10 | using System.Threading.Tasks; 11 | using Microsoft.AspNetCore.Components; 12 | #nullable restore 13 | #line 1 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 14 | using System.Net.Http; 15 | 16 | #line default 17 | #line hidden 18 | #nullable disable 19 | #nullable restore 20 | #line 2 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 21 | using Microsoft.AspNetCore.Components.Forms; 22 | 23 | #line default 24 | #line hidden 25 | #nullable disable 26 | #nullable restore 27 | #line 3 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 28 | using Microsoft.AspNetCore.Components.Routing; 29 | 30 | #line default 31 | #line hidden 32 | #nullable disable 33 | #nullable restore 34 | #line 4 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 35 | using Microsoft.AspNetCore.Components.Web; 36 | 37 | #line default 38 | #line hidden 39 | #nullable disable 40 | #nullable restore 41 | #line 5 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 42 | using Microsoft.JSInterop; 43 | 44 | #line default 45 | #line hidden 46 | #nullable disable 47 | #nullable restore 48 | #line 6 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 49 | using BlazorRealTime.Blazor; 50 | 51 | #line default 52 | #line hidden 53 | #nullable disable 54 | #nullable restore 55 | #line 7 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 56 | using BlazorRealTime.Blazor.Shared; 57 | 58 | #line default 59 | #line hidden 60 | #nullable disable 61 | #nullable restore 62 | #line 2 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Pages\Index.razor" 63 | using Microsoft.AspNetCore.SignalR.Client; 64 | 65 | #line default 66 | #line hidden 67 | #nullable disable 68 | [Microsoft.AspNetCore.Components.RouteAttribute("/")] 69 | public partial class Index : Microsoft.AspNetCore.Components.ComponentBase 70 | { 71 | #pragma warning disable 1998 72 | protected override void BuildRenderTree(Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder __builder) 73 | { 74 | __builder.AddMarkupContent(0, "

Welcome to SignalR with Blazor

\r\n"); 75 | __builder.OpenElement(1, "button"); 76 | __builder.AddAttribute(2, "class", "btn btn-success"); 77 | __builder.AddAttribute(3, "onclick", Microsoft.AspNetCore.Components.EventCallback.Factory.Create(this, 78 | #nullable restore 79 | #line 5 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Pages\Index.razor" 80 | async () => await ConnectToServer() 81 | 82 | #line default 83 | #line hidden 84 | #nullable disable 85 | )); 86 | __builder.AddAttribute(4, "disabled", 87 | #nullable restore 88 | #line 5 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Pages\Index.razor" 89 | isConnected 90 | 91 | #line default 92 | #line hidden 93 | #nullable disable 94 | ); 95 | __builder.AddContent(5, "Connect"); 96 | __builder.CloseElement(); 97 | __builder.AddMarkupContent(6, "\r\n"); 98 | __builder.OpenElement(7, "h3"); 99 | __builder.AddContent(8, "Connection Status: "); 100 | __builder.AddContent(9, 101 | #nullable restore 102 | #line 6 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Pages\Index.razor" 103 | connectionStatus 104 | 105 | #line default 106 | #line hidden 107 | #nullable disable 108 | ); 109 | __builder.CloseElement(); 110 | __builder.AddMarkupContent(10, "\r\n"); 111 | __builder.OpenElement(11, "div"); 112 | __builder.AddAttribute(12, "class", "row"); 113 | __builder.AddMarkupContent(13, "\r\n "); 114 | __builder.OpenElement(14, "div"); 115 | __builder.AddAttribute(15, "class", "col-4"); 116 | __builder.AddMarkupContent(16, "\r\n"); 117 | #nullable restore 118 | #line 9 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Pages\Index.razor" 119 | foreach (var item in notifications) 120 | { 121 | 122 | #line default 123 | #line hidden 124 | #nullable disable 125 | __builder.AddContent(17, " "); 126 | __builder.OpenElement(18, "div"); 127 | __builder.AddAttribute(19, "class", "row"); 128 | __builder.AddMarkupContent(20, "\r\n "); 129 | __builder.OpenElement(21, "h4"); 130 | __builder.AddContent(22, 131 | #nullable restore 132 | #line 12 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Pages\Index.razor" 133 | item 134 | 135 | #line default 136 | #line hidden 137 | #nullable disable 138 | ); 139 | __builder.CloseElement(); 140 | __builder.AddMarkupContent(23, "\r\n "); 141 | __builder.CloseElement(); 142 | __builder.AddMarkupContent(24, "\r\n"); 143 | #nullable restore 144 | #line 14 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Pages\Index.razor" 145 | } 146 | 147 | #line default 148 | #line hidden 149 | #nullable disable 150 | __builder.AddContent(25, " "); 151 | __builder.CloseElement(); 152 | __builder.AddMarkupContent(26, "\r\n"); 153 | __builder.CloseElement(); 154 | } 155 | #pragma warning restore 1998 156 | #nullable restore 157 | #line 18 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Pages\Index.razor" 158 | 159 | string url = "http://localhost:63945/notificationhub"; 160 | 161 | HubConnection _connection = null; 162 | bool isConnected = false; 163 | string connectionStatus = "Closed"; 164 | 165 | List notifications = new List(); 166 | 167 | private async Task ConnectToServer() 168 | { 169 | _connection = new HubConnectionBuilder() 170 | .WithUrl(url) 171 | .Build(); 172 | 173 | await _connection.StartAsync(); 174 | isConnected = true; 175 | connectionStatus = "Connected :-)"; 176 | 177 | _connection.Closed += async (s) => 178 | { 179 | isConnected = false; 180 | connectionStatus = "Disconnected"; 181 | await _connection.StartAsync(); 182 | isConnected = true; 183 | }; 184 | 185 | _connection.On("notification", m => 186 | { 187 | notifications.Add(m); 188 | StateHasChanged(); 189 | }); 190 | } 191 | 192 | 193 | #line default 194 | #line hidden 195 | #nullable disable 196 | } 197 | } 198 | #pragma warning restore 1591 199 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/Razor/Pages/FetchData.razor.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Pages\FetchData.razor" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "b6a77d898b4dcc5cb936f9220179c723cc24f494" 2 | // 3 | #pragma warning disable 1591 4 | namespace BlazorRealTime.Blazor.Pages 5 | { 6 | #line hidden 7 | using System; 8 | using System.Collections.Generic; 9 | using System.Linq; 10 | using System.Threading.Tasks; 11 | using Microsoft.AspNetCore.Components; 12 | #nullable restore 13 | #line 1 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 14 | using System.Net.Http; 15 | 16 | #line default 17 | #line hidden 18 | #nullable disable 19 | #nullable restore 20 | #line 2 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 21 | using Microsoft.AspNetCore.Components.Forms; 22 | 23 | #line default 24 | #line hidden 25 | #nullable disable 26 | #nullable restore 27 | #line 3 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 28 | using Microsoft.AspNetCore.Components.Routing; 29 | 30 | #line default 31 | #line hidden 32 | #nullable disable 33 | #nullable restore 34 | #line 4 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 35 | using Microsoft.AspNetCore.Components.Web; 36 | 37 | #line default 38 | #line hidden 39 | #nullable disable 40 | #nullable restore 41 | #line 5 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 42 | using Microsoft.JSInterop; 43 | 44 | #line default 45 | #line hidden 46 | #nullable disable 47 | #nullable restore 48 | #line 6 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 49 | using BlazorRealTime.Blazor; 50 | 51 | #line default 52 | #line hidden 53 | #nullable disable 54 | #nullable restore 55 | #line 7 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 56 | using BlazorRealTime.Blazor.Shared; 57 | 58 | #line default 59 | #line hidden 60 | #nullable disable 61 | [Microsoft.AspNetCore.Components.RouteAttribute("/fetchdata")] 62 | public partial class FetchData : Microsoft.AspNetCore.Components.ComponentBase 63 | { 64 | #pragma warning disable 1998 65 | protected override void BuildRenderTree(Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder __builder) 66 | { 67 | __builder.AddMarkupContent(0, "

Weather forecast

\r\n\r\n"); 68 | __builder.AddMarkupContent(1, "

This component demonstrates fetching data from the server.

\r\n\r\n"); 69 | #nullable restore 70 | #line 8 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Pages\FetchData.razor" 71 | if (forecasts == null) 72 | { 73 | 74 | #line default 75 | #line hidden 76 | #nullable disable 77 | __builder.AddContent(2, " "); 78 | __builder.AddMarkupContent(3, "

Loading...

\r\n"); 79 | #nullable restore 80 | #line 11 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Pages\FetchData.razor" 81 | } 82 | else 83 | { 84 | 85 | #line default 86 | #line hidden 87 | #nullable disable 88 | __builder.AddContent(4, " "); 89 | __builder.OpenElement(5, "table"); 90 | __builder.AddAttribute(6, "class", "table"); 91 | __builder.AddMarkupContent(7, "\r\n "); 92 | __builder.AddMarkupContent(8, "\r\n \r\n Date\r\n Temp. (C)\r\n Temp. (F)\r\n Summary\r\n \r\n \r\n "); 93 | __builder.OpenElement(9, "tbody"); 94 | __builder.AddMarkupContent(10, "\r\n"); 95 | #nullable restore 96 | #line 24 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Pages\FetchData.razor" 97 | foreach (var forecast in forecasts) 98 | { 99 | 100 | #line default 101 | #line hidden 102 | #nullable disable 103 | __builder.AddContent(11, " "); 104 | __builder.OpenElement(12, "tr"); 105 | __builder.AddMarkupContent(13, "\r\n "); 106 | __builder.OpenElement(14, "td"); 107 | __builder.AddContent(15, 108 | #nullable restore 109 | #line 27 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Pages\FetchData.razor" 110 | forecast.Date.ToShortDateString() 111 | 112 | #line default 113 | #line hidden 114 | #nullable disable 115 | ); 116 | __builder.CloseElement(); 117 | __builder.AddMarkupContent(16, "\r\n "); 118 | __builder.OpenElement(17, "td"); 119 | __builder.AddContent(18, 120 | #nullable restore 121 | #line 28 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Pages\FetchData.razor" 122 | forecast.TemperatureC 123 | 124 | #line default 125 | #line hidden 126 | #nullable disable 127 | ); 128 | __builder.CloseElement(); 129 | __builder.AddMarkupContent(19, "\r\n "); 130 | __builder.OpenElement(20, "td"); 131 | __builder.AddContent(21, 132 | #nullable restore 133 | #line 29 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Pages\FetchData.razor" 134 | forecast.TemperatureF 135 | 136 | #line default 137 | #line hidden 138 | #nullable disable 139 | ); 140 | __builder.CloseElement(); 141 | __builder.AddMarkupContent(22, "\r\n "); 142 | __builder.OpenElement(23, "td"); 143 | __builder.AddContent(24, 144 | #nullable restore 145 | #line 30 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Pages\FetchData.razor" 146 | forecast.Summary 147 | 148 | #line default 149 | #line hidden 150 | #nullable disable 151 | ); 152 | __builder.CloseElement(); 153 | __builder.AddMarkupContent(25, "\r\n "); 154 | __builder.CloseElement(); 155 | __builder.AddMarkupContent(26, "\r\n"); 156 | #nullable restore 157 | #line 32 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Pages\FetchData.razor" 158 | } 159 | 160 | #line default 161 | #line hidden 162 | #nullable disable 163 | __builder.AddContent(27, " "); 164 | __builder.CloseElement(); 165 | __builder.AddMarkupContent(28, "\r\n "); 166 | __builder.CloseElement(); 167 | __builder.AddMarkupContent(29, "\r\n"); 168 | #nullable restore 169 | #line 35 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Pages\FetchData.razor" 170 | } 171 | 172 | #line default 173 | #line hidden 174 | #nullable disable 175 | } 176 | #pragma warning restore 1998 177 | #nullable restore 178 | #line 37 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Pages\FetchData.razor" 179 | 180 | private WeatherForecast[] forecasts; 181 | 182 | protected override async Task OnInitializedAsync() 183 | { 184 | forecasts = await Http.GetJsonAsync("sample-data/weather.json"); 185 | } 186 | 187 | public class WeatherForecast 188 | { 189 | public DateTime Date { get; set; } 190 | 191 | public int TemperatureC { get; set; } 192 | 193 | public string Summary { get; set; } 194 | 195 | public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); 196 | } 197 | 198 | #line default 199 | #line hidden 200 | #nullable disable 201 | [global::Microsoft.AspNetCore.Components.InjectAttribute] private HttpClient Http { get; set; } 202 | } 203 | } 204 | #pragma warning restore 1591 205 | -------------------------------------------------------------------------------- /src/BlazorRealTime.Blazor/obj/Debug/netstandard2.1/Razor/Shared/NavMenu.razor.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Shared\NavMenu.razor" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "cf6bcc344fc56ff06608778a1c7ddb8e96fb145f" 2 | // 3 | #pragma warning disable 1591 4 | namespace BlazorRealTime.Blazor.Shared 5 | { 6 | #line hidden 7 | using System; 8 | using System.Collections.Generic; 9 | using System.Linq; 10 | using System.Threading.Tasks; 11 | using Microsoft.AspNetCore.Components; 12 | #nullable restore 13 | #line 1 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 14 | using System.Net.Http; 15 | 16 | #line default 17 | #line hidden 18 | #nullable disable 19 | #nullable restore 20 | #line 2 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 21 | using Microsoft.AspNetCore.Components.Forms; 22 | 23 | #line default 24 | #line hidden 25 | #nullable disable 26 | #nullable restore 27 | #line 3 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 28 | using Microsoft.AspNetCore.Components.Routing; 29 | 30 | #line default 31 | #line hidden 32 | #nullable disable 33 | #nullable restore 34 | #line 4 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 35 | using Microsoft.AspNetCore.Components.Web; 36 | 37 | #line default 38 | #line hidden 39 | #nullable disable 40 | #nullable restore 41 | #line 5 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 42 | using Microsoft.JSInterop; 43 | 44 | #line default 45 | #line hidden 46 | #nullable disable 47 | #nullable restore 48 | #line 6 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 49 | using BlazorRealTime.Blazor; 50 | 51 | #line default 52 | #line hidden 53 | #nullable disable 54 | #nullable restore 55 | #line 7 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\_Imports.razor" 56 | using BlazorRealTime.Blazor.Shared; 57 | 58 | #line default 59 | #line hidden 60 | #nullable disable 61 | public partial class NavMenu : Microsoft.AspNetCore.Components.ComponentBase 62 | { 63 | #pragma warning disable 1998 64 | protected override void BuildRenderTree(Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder __builder) 65 | { 66 | __builder.OpenElement(0, "div"); 67 | __builder.AddAttribute(1, "class", "top-row pl-4 navbar navbar-dark"); 68 | __builder.AddMarkupContent(2, "\r\n "); 69 | __builder.AddMarkupContent(3, "BlazorRealTime.Blazor\r\n "); 70 | __builder.OpenElement(4, "button"); 71 | __builder.AddAttribute(5, "class", "navbar-toggler"); 72 | __builder.AddAttribute(6, "onclick", Microsoft.AspNetCore.Components.EventCallback.Factory.Create(this, 73 | #nullable restore 74 | #line 3 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Shared\NavMenu.razor" 75 | ToggleNavMenu 76 | 77 | #line default 78 | #line hidden 79 | #nullable disable 80 | )); 81 | __builder.AddMarkupContent(7, "\r\n \r\n "); 82 | __builder.CloseElement(); 83 | __builder.AddMarkupContent(8, "\r\n"); 84 | __builder.CloseElement(); 85 | __builder.AddMarkupContent(9, "\r\n\r\n"); 86 | __builder.OpenElement(10, "div"); 87 | __builder.AddAttribute(11, "class", 88 | #nullable restore 89 | #line 8 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Shared\NavMenu.razor" 90 | NavMenuCssClass 91 | 92 | #line default 93 | #line hidden 94 | #nullable disable 95 | ); 96 | __builder.AddAttribute(12, "onclick", Microsoft.AspNetCore.Components.EventCallback.Factory.Create(this, 97 | #nullable restore 98 | #line 8 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Shared\NavMenu.razor" 99 | ToggleNavMenu 100 | 101 | #line default 102 | #line hidden 103 | #nullable disable 104 | )); 105 | __builder.AddMarkupContent(13, "\r\n "); 106 | __builder.OpenElement(14, "ul"); 107 | __builder.AddAttribute(15, "class", "nav flex-column"); 108 | __builder.AddMarkupContent(16, "\r\n "); 109 | __builder.OpenElement(17, "li"); 110 | __builder.AddAttribute(18, "class", "nav-item px-3"); 111 | __builder.AddMarkupContent(19, "\r\n "); 112 | __builder.OpenComponent(20); 113 | __builder.AddAttribute(21, "class", "nav-link"); 114 | __builder.AddAttribute(22, "href", ""); 115 | __builder.AddAttribute(23, "Match", Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck( 116 | #nullable restore 117 | #line 11 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Shared\NavMenu.razor" 118 | NavLinkMatch.All 119 | 120 | #line default 121 | #line hidden 122 | #nullable disable 123 | )); 124 | __builder.AddAttribute(24, "ChildContent", (Microsoft.AspNetCore.Components.RenderFragment)((__builder2) => { 125 | __builder2.AddMarkupContent(25, "\r\n Home\r\n "); 126 | } 127 | )); 128 | __builder.CloseComponent(); 129 | __builder.AddMarkupContent(26, "\r\n "); 130 | __builder.CloseElement(); 131 | __builder.AddMarkupContent(27, "\r\n "); 132 | __builder.OpenElement(28, "li"); 133 | __builder.AddAttribute(29, "class", "nav-item px-3"); 134 | __builder.AddMarkupContent(30, "\r\n "); 135 | __builder.OpenComponent(31); 136 | __builder.AddAttribute(32, "class", "nav-link"); 137 | __builder.AddAttribute(33, "href", "counter"); 138 | __builder.AddAttribute(34, "ChildContent", (Microsoft.AspNetCore.Components.RenderFragment)((__builder2) => { 139 | __builder2.AddMarkupContent(35, "\r\n Counter\r\n "); 140 | } 141 | )); 142 | __builder.CloseComponent(); 143 | __builder.AddMarkupContent(36, "\r\n "); 144 | __builder.CloseElement(); 145 | __builder.AddMarkupContent(37, "\r\n "); 146 | __builder.OpenElement(38, "li"); 147 | __builder.AddAttribute(39, "class", "nav-item px-3"); 148 | __builder.AddMarkupContent(40, "\r\n "); 149 | __builder.OpenComponent(41); 150 | __builder.AddAttribute(42, "class", "nav-link"); 151 | __builder.AddAttribute(43, "href", "fetchdata"); 152 | __builder.AddAttribute(44, "ChildContent", (Microsoft.AspNetCore.Components.RenderFragment)((__builder2) => { 153 | __builder2.AddMarkupContent(45, "\r\n Fetch data\r\n "); 154 | } 155 | )); 156 | __builder.CloseComponent(); 157 | __builder.AddMarkupContent(46, "\r\n "); 158 | __builder.CloseElement(); 159 | __builder.AddMarkupContent(47, "\r\n "); 160 | __builder.CloseElement(); 161 | __builder.AddMarkupContent(48, "\r\n"); 162 | __builder.CloseElement(); 163 | } 164 | #pragma warning restore 1998 165 | #nullable restore 166 | #line 28 "C:\Users\dell\Documents\AK Academy\Blazor Topics\SignalR\BlazorRealTime\BlazorRealTime.Blazor\Shared\NavMenu.razor" 167 | 168 | private bool collapseNavMenu = true; 169 | 170 | private string NavMenuCssClass => collapseNavMenu ? "collapse" : null; 171 | 172 | private void ToggleNavMenu() 173 | { 174 | collapseNavMenu = !collapseNavMenu; 175 | } 176 | 177 | #line default 178 | #line hidden 179 | #nullable disable 180 | } 181 | } 182 | #pragma warning restore 1591 183 | --------------------------------------------------------------------------------