SignalR.Proximity.Core
7.0.4
.NET 5.0
This package targets .NET 5.0. The package is compatible with this framework or higher.
.NET Core 3.1
This package targets .NET Core 3.1. The package is compatible with this framework or higher.
.NET Framework 4.7.2
This package targets .NET Framework 4.7.2. The package is compatible with this framework or higher.
dotnet add package SignalR.Proximity.Core --version 7.0.4
NuGet\Install-Package SignalR.Proximity.Core -Version 7.0.4
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SignalR.Proximity.Core" Version="7.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SignalR.Proximity.Core" Version="7.0.4" />
<PackageReference Include="SignalR.Proximity.Core" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add SignalR.Proximity.Core --version 7.0.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: SignalR.Proximity.Core, 7.0.4"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package SignalR.Proximity.Core@7.0.4
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=SignalR.Proximity.Core&version=7.0.4
#tool nuget:?package=SignalR.Proximity.Core&version=7.0.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
SignalR.Proximity
SignalR.Proximity is a .Net library
Usage
Instantiate connexions
using SignalR.Proximity;
var cnx = endPointProvider.Connect<IMyNotificationContract>();
await cnx.StartAsync();
Send messages
await cnx.Notifier.ToAll().NotifyAsync(t=> t.MyNotification("hello word"));
//or
await cnx.Notifier
//Define here your target scope
.ToGroups("My groupe","Auther Groupe","...")
//'t' is an proxy instance of IMyNotificationContract
.NotifyAsync(t => t.MyNotification("hello word"));
Receive messages
using SignalR.Proximity;
public class SampleClass : IMyNotificationContract
{
...
cnx.Client.Attach(this);
await cnx.Client.JoinGroupsAsync("My groupe");
..
public void MyNotification(string message)
{
//Receive message callback here!
}
}
Go to samples for more details..
Contributing
Working progress..
How to get it
Use NuGet Package Manager to install the package or use any of the following commands in NuGet Package Manager Console.
PM> Install-Package SignalR.Proximity
PM> Install-Package SignalR.Proximity.Hosting
Status
License
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
.NET Core | netcoreapp3.1 is compatible. |
.NET Framework | net472 is compatible. net48 was computed. net481 was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETCoreApp 3.1
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 7.0.0)
- Microsoft.Extensions.Options (>= 7.0.1)
-
.NETFramework 4.7.2
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 7.0.0)
- Microsoft.Extensions.Options (>= 7.0.1)
-
net5.0
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 7.0.0)
- Microsoft.Extensions.Options (>= 7.0.1)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on SignalR.Proximity.Core:
Package | Downloads |
---|---|
SignalR.Proximity
.Net SignalR Without Hub Implementations! |
|
SignalR.Proximity.Hosting
.Net SignalR Without Hub Implementations! |
GitHub repositories
This package is not used by any popular GitHub repositories.