Open
Description
When I try to set the Address family of the AmqpEndpoint explicitly to InterNetwork the value still remains Unspecified
ConnectionFactory = new ConnectionFactory()
{
HostName = connectionFactorySettings.HostName,
VirtualHost = connectionFactorySettings.VirtualHost,
UserName = connectionFactorySettings.Username,
Password = connectionFactorySettings.Password,
Port = connectionFactorySettings.Port,
AutomaticRecoveryEnabled = true
};
ConnectionFactory.Endpoint.AddressFamily = System.Net.Sockets.AddressFamily.InterNetwork;