You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently to get hands on to ActionDescriptorChangeProvider one has to use the following:
public EndpointManagementService(IEnumerable<IActionDescriptorChangeProvider> changeProviders)
{
_changeProvider = changeProviders.FirstOrDefault(x => x is ActionDescriptorChangeProvider) as ActionDescriptorChangeProvider;
}
Making ActionDescriptorChangeProvider available directly through DI could be helpful in some situations where developer has to react when an endpoint changes.
Note that we still should have only one instance of ActionDescriptorChangeProvider. And we should at some point rename this class.
The text was updated successfully, but these errors were encountered:
Currently to get hands on to ActionDescriptorChangeProvider one has to use the following:
Making ActionDescriptorChangeProvider available directly through DI could be helpful in some situations where developer has to react when an endpoint changes.
Note that we still should have only one instance of ActionDescriptorChangeProvider. And we should at some point rename this class.
The text was updated successfully, but these errors were encountered: