Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCallSite
Summary description for ServiceCallSite
namespace Microsoft.Extensions.DependencyInjection.ServiceLookup
{
internal abstract class ServiceCallSite
{
public abstract Type ServiceType { get; }
public abstract Type ImplementationType { get; }
public abstract CallSiteKind Kind { get; }
public ResultCache Cache { get; }
public object Value { get; set; }
public object Key { get; }
public bool CaptureDisposable { get; }
protected ServiceCallSite(ResultCache cache, object key);
}
}