Stashbox by Peter Csajtai

<PackageReference Include="Stashbox" Version="5.8.2-preview-795" />

 InstanceOptions

public class InstanceOptions
Represents the instance registration options.
using System.Runtime.CompilerServices; namespace Stashbox.Registration { [System.Runtime.CompilerServices.NullableContext(1)] [System.Runtime.CompilerServices.Nullable(0)] public class InstanceOptions { public readonly bool IsWireUp; public readonly object ExistingInstance; internal InstanceOptions(object existingInstance, bool isWireUp) { IsWireUp = isWireUp; ExistingInstance = existingInstance; } } }