<PackageReference Include="Castle.Windsor" Version="4.0.0" />

AbstractHandler

Implements the basis of IHandler

Gets the component model.

public HandlerState CurrentState { get; }

Gets the handler state.

protected IKernelInternal Kernel { get; }

Constructs and initializes the handler

protected void AddDependency(DependencyModel dependency)

Invoked by InitDependencies in order to check if a dependency can be satisfied. If not, the handler is set to a 'waiting dependency' state.

protected void AddMissingDependency(DependencyModel dependency)

public virtual bool CanResolve(CreationContext context, ISubDependencyResolver contextHandlerResolver, ComponentModel model, DependencyModel dependency)

protected void DependencySatisfied(ref bool stateChanged)

Invoked by the kernel when one of registered dependencies were satisfied by new components registered.

public virtual void Dispose()

public virtual void Init(IKernelInternal kernel)

Saves the kernel instance, subscribes to AddedAsChildKernel event, creates the lifestyle manager instance and computes the handler state.

protected virtual void InitDependencies()

protected void OnAddedAsChildKernel(object sender, EventArgs e)

Invoked when the container receives a parent container reference.

public virtual bool Release(Burden burden)

disposes the component instance (or recycle it).

public abstract bool ReleaseCore(Burden burden)

Should be implemented by derived classes: disposes the component instance (or recycle it)

protected abstract object Resolve(CreationContext context, bool instanceRequired)

Returns an instance of the component this handler is responsible for

public object Resolve(CreationContext context)

Returns an instance of the component this handler is responsible for

public virtual object Resolve(CreationContext context, ISubDependencyResolver contextHandlerResolver, ComponentModel model, DependencyModel dependency)

protected void SetNewState(HandlerState newState)

public virtual bool Supports(Type service)

public virtual bool SupportsAssignable(Type service)

public object TryResolve(CreationContext context)