This repository contains source code of the RabbitMQ .NET client. The original RabbitMQ .Net client is maintained by the RabbitMQ team at Pivotal.
var factory = new ConnectionFactory()
{
HostName = "localhost" ,
SocketFactory = family =>
{
var tcpClient = new TcpClient(AddressFamily.InterNetwork);
return new TcpClientAdapter(tcpClient);
}
};
https://www.nuget.org/packages/RabbitMQ.Client.CoreClrUnofficial/
See Contributing and How to Run Tests.
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").