Skip to content

Instantly share code, notes, and snippets.

@thiagoloureiro
Created October 20, 2017 02:43
Show Gist options
  • Save thiagoloureiro/b23ec9f0f98f7e2d1ebca7242c775651 to your computer and use it in GitHub Desktop.
Save thiagoloureiro/b23ec9f0f98f7e2d1ebca7242c775651 to your computer and use it in GitHub Desktop.
public ConnectionFactory GetConnectionFactory()
{
var connectionFactory = new ConnectionFactory
{
HostName = "localhost",
UserName = "guest",
Password = "guest"
};
return connectionFactory;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment