ISupportRequiredService
Optional contract used by GetRequiredService<T>
to resolve services if supported by IServiceProvider.
using System;
using System.Runtime.CompilerServices;
namespace Microsoft.Extensions.DependencyInjection
{
[System.Runtime.CompilerServices.NullableContext(1)]
public interface ISupportRequiredService
{
object GetRequiredService(Type serviceType);
}
}