Centrifugo.AspNetCore
1.0.8
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Centrifugo.AspNetCore --version 1.0.8
NuGet\Install-Package Centrifugo.AspNetCore -Version 1.0.8
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="Centrifugo.AspNetCore" Version="1.0.8" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Centrifugo.AspNetCore --version 1.0.8
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Centrifugo.AspNetCore, 1.0.8"
#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.
// Install Centrifugo.AspNetCore as a Cake Addin #addin nuget:?package=Centrifugo.AspNetCore&version=1.0.8 // Install Centrifugo.AspNetCore as a Cake Tool #tool nuget:?package=Centrifugo.AspNetCore&version=1.0.8
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Centrifugo.AspNetCore is a client for asp.net core 5.0 and 6.0 helps to consume Centrifugo real-time messaging Server API (https://centrifugal.dev/docs/server/server_api)
Nuget package: https://www.nuget.org/packages/Centrifugo.AspNetCore/
Sample project: https://github.com/ismkdc/Centrifugo.AspNetCore/tree/main/src/Centrifugo.AspNetCore.Sample
Example:
1-) Register to IOC
public void ConfigureServices(IServiceCollection services)
{
// ToDo: Add your own configuration
var centrifugoConfig = new CentrifugoOptions
{
Url = "http://localhost:8000/api",
ApiKey = "1c975adb-e03d-4ebe-9bfb-xxxxxxxxx"
};
services.AddCentrifugoClient(centrifugoConfig);
}
2-) Use it! :)
public class ExampleService
{
private readonly ICentrifugoClient _centrifugoClient;
public ExampleService(ICentrifugoClient centrifugoClient)
{
_centrifugoClient = centrifugoClient;
}
public async Task TestCentrifugo()
{
// Get server info
var serverInfo = await _centrifugoClient.Info();
// Get channels info
var channelsInfo = await _centrifugoClient.Channels();
// Broadcast something
await _centrifugoClient.Broadcast(
new Broadcast()
{
Channels = new[] { "channel", "channel2" },
Data = new { value = 1 }
});
// Publish something
await _centrifugoClient.Publish(
new Publish()
{
Channel = "channel",
Data = new { value = 1 }
});
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 is compatible. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net5.0
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 6.0.0)
- Microsoft.Extensions.Http (>= 6.0.0)
- Microsoft.Extensions.Options (>= 6.0.0)
-
net6.0
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 6.0.0)
- Microsoft.Extensions.Http (>= 6.0.0)
- Microsoft.Extensions.Options (>= 6.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
updated description