Skip to content

ru-sh/rabbitmq-dotnet-client

 
 

Repository files navigation

RabbitMQ .NET Client (Unofficial CoreClr version)

This repository contains source code of the RabbitMQ .NET client. The original RabbitMQ .Net client is maintained by the RabbitMQ team at Pivotal.

Working in IPv6 networks (including working in Docker container)

var factory = new ConnectionFactory()
{
  HostName = "localhost" ,
  SocketFactory = family =>
  {
    var tcpClient = new TcpClient(AddressFamily.InterNetwork);
    return new TcpClientAdapter(tcpClient);
  }
};

NuGet artifacts

https://www.nuget.org/packages/RabbitMQ.Client.CoreClrUnofficial/

Tutorials and Documentation

Contributing

See Contributing and How to Run Tests.

License

This package, the RabbitMQ .NET client library, is double-licensed under the Mozilla Public License 1.1 ("MPL") and the Apache License version 2 ("ASL").

About

RabbitMQ .NET client - CoreCLR VERSION

Resources

License

Unknown and 2 other licenses found

Licenses found

Unknown
LICENSE
Apache-2.0
LICENSE-APACHE2
Unknown
LICENSE-MPL-RabbitMQ

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • C# 94.8%
  • XSLT 4.3%
  • Other 0.9%