xcomponent/ReactiveXComponent.Net

CreateSession issue with ConfigurationOverrides

Closed this issue · 1 comments

On public IXCSession CreateSession(ConfigurationOverrides configurationOverrides = null) method the folllowing code should use string.IsNullOrEmpty instead of null:
if (configurationOverrides.Host != null)
{
busDetails.Host = configurationOverrides.Host;
}

That would introduce an issue for configuration elements we want to override with an empty string..