in src/main/csharp/ConnectionFactory.cs [55:69]
public ConnectionFactory(Uri rawBrokerUri, string clientID)
{
this.BrokerUri = rawBrokerUri;
if(this.BrokerUri.Port < 1)
{
throw new NMSConnectionException("Missing connection port number.");
}
if(null == clientID)
{
clientID = Guid.NewGuid().ToString();
}
this.ClientId = clientID;
}