IServiceResolver
Represents a dependency resolver.
using System.Runtime.CompilerServices;
namespace Stashbox.Resolution
{
[System.Runtime.CompilerServices.NullableContext(1)]
public interface IServiceResolver : IResolver
{
ServiceContext GetExpression(IResolutionStrategy resolutionStrategy, TypeInformation typeInfo, ResolutionContext resolutionContext);
bool CanUseForResolution(TypeInformation typeInfo, ResolutionContext resolutionContext);
}
}