IInternalRequestContext
using System;
using System.Runtime.CompilerServices;
namespace Stashbox.Resolution
{
[System.Runtime.CompilerServices.NullableContext(1)]
internal interface IInternalRequestContext : IRequestContext
{
object GetOrAddInstance(int key, Func<IResolutionScope, IRequestContext, object> factory, IResolutionScope scope);
bool IsInstanceExcludedFromTracking(object instance);
}
}