Centrifugo.AspNetCore 1.0.8

There is a newer version of this package available.
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
#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

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 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.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.16 3,665 4/13/2023
1.0.15 5,186 6/12/2022
1.0.14 378 6/12/2022
1.0.13 421 6/5/2022
1.0.12 376 5/27/2022
1.0.11 469 5/16/2022
1.0.10 399 4/30/2022
1.0.9 390 4/27/2022
1.0.8 383 4/26/2022

updated description