We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
If you need another way of providing url's for your services you can replace the UrlProvider by implementing the
public interface IUrlProvider { string GetEndpoint(RpcMethodInfo invokeInfo); }
Then you can inject it in the setup
serviceCollection.ConfigureHttpApiClient(conf => { conf.SetUrlProvider(new YourUrlProvider) conf.AddClientFor<Contract.IServiceOne>("http://localhost:5000/"); });