IKernel
The IKernel interface exposes all the functionality
the MicroKernel implements.
using Castle.Core;
using Castle.Core.Internal;
using Castle.MicroKernel.Registration;
using Castle.MicroKernel.SubSystems.Configuration;
using System;
using System.Collections;
using System.ComponentModel;
namespace Castle.MicroKernel
{
public interface IKernel : IServiceProvider, IKernelEvents, IDisposable
{
IComponentModelBuilder ComponentModelBuilder { get; }
IHandlerFactory HandlerFactory { get; }
IConfigurationStore ConfigurationStore { get; set; }
IReleasePolicy ReleasePolicy { get; set; }
IDependencyResolver Resolver { get; }
IProxyFactory ProxyFactory { get; set; }
IKernel Parent { get; set; }
GraphNode[] GraphNodes { get; }
[Obsolete("Use Resolve<object>(key) instead")]
[EditorBrowsable(EditorBrowsableState.Advanced)]
object this[string key] { get; }
[EditorBrowsable(EditorBrowsableState.Advanced)]
[Obsolete("Use Resolve(service) or generic strongly typed version instead")]
object this[Type service] { get; }
IKernel Register(params IRegistration[] registrations);
bool RemoveComponent(string key);
bool HasComponent(string key);
bool HasComponent(Type service);
void RegisterCustomDependencies(Type service, IDictionary dependencies);
void RegisterCustomDependencies(Type service, object dependenciesAsAnonymousType);
void RegisterCustomDependencies(string key, IDictionary dependencies);
void RegisterCustomDependencies(string key, object dependenciesAsAnonymousType);
void ReleaseComponent(object instance);
IHandler GetHandler(string key);
IHandler GetHandler(Type service);
IHandler[] GetHandlers(Type service);
IHandler[] GetAssignableHandlers(Type service);
IKernel AddFacility(string key, IFacility facility);
IKernel AddFacility<T>(string key) where T : IFacility, new;
IKernel AddFacility<T>(string key, Action<T> onCreate) where T : IFacility, new;
IKernel AddFacility<T>(string key, Func<T, object> onCreate) where T : IFacility, new;
IKernel AddFacility<T>() where T : IFacility, new;
IKernel AddFacility<T>(Action<T> onCreate) where T : IFacility, new;
IKernel AddFacility<T>(Func<T, object> onCreate) where T : IFacility, new;
IFacility[] GetFacilities();
void AddSubSystem(string key, ISubSystem subsystem);
ISubSystem GetSubSystem(string key);
void AddChildKernel(IKernel kernel);
void RemoveChildKernel(IKernel kernel);
void AddHandlerSelector(IHandlerSelector selector);
[EditorBrowsable(EditorBrowsableState.Advanced)]
[Obsolete("Use Register(Component.For(classType).Named(key)) or generic version instead.")]
void AddComponent(string key, Type classType);
[Obsolete("Use Register(Component.For(classType).Named(key).Lifestyle.Is(lifestyle)) or generic version instead.")]
[EditorBrowsable(EditorBrowsableState.Advanced)]
void AddComponent(string key, Type classType, LifestyleType lifestyle);
[Obsolete("Use Register(Component.For(classType).Named(key).Lifestyle.Is(lifestyle)) or generic version instead.")]
[EditorBrowsable(EditorBrowsableState.Advanced)]
void AddComponent(string key, Type classType, LifestyleType lifestyle, bool overwriteLifestyle);
[Obsolete("Use Register(Component.For(serviceType).ImplementedBy(classType).Named(key)) or generic version instead.")]
[EditorBrowsable(EditorBrowsableState.Advanced)]
void AddComponent(string key, Type serviceType, Type classType);
[Obsolete("Use Register(Component.For(serviceType).ImplementedBy(classType).Named(key).Lifestyle.Is(lifestyle)) or generic version instead.")]
[EditorBrowsable(EditorBrowsableState.Advanced)]
void AddComponent(string key, Type serviceType, Type classType, LifestyleType lifestyle);
[EditorBrowsable(EditorBrowsableState.Advanced)]
[Obsolete("Use Register(Component.For(serviceType).ImplementedBy(classType).Named(key).Lifestyle.Is(lifestyle)) or generic version instead.")]
void AddComponent(string key, Type serviceType, Type classType, LifestyleType lifestyle, bool overwriteLifestyle);
[Obsolete("Use Register(Component.For<T>()) instead.")]
[EditorBrowsable(EditorBrowsableState.Advanced)]
void AddComponent<T>();
[EditorBrowsable(EditorBrowsableState.Advanced)]
[Obsolete("Use Register(Component.For<T>().Lifestyle.Is(lifestyle)) instead.")]
void AddComponent<T>(LifestyleType lifestyle);
[EditorBrowsable(EditorBrowsableState.Advanced)]
[Obsolete("Use Register(Component.For<T>().Lifestyle.Is(lifestyle)) instead.")]
void AddComponent<T>(LifestyleType lifestyle, bool overwriteLifestyle);
[EditorBrowsable(EditorBrowsableState.Advanced)]
[Obsolete("Use Register(Component.For(serviceType).ImplementedBy<T>()) or generic version instead.")]
void AddComponent<T>(Type serviceType);
[Obsolete("Use Register(Component.For(serviceType).ImplementedBy<T>().Lifestyle.Is(lifestyle)) or generic version instead.")]
[EditorBrowsable(EditorBrowsableState.Advanced)]
void AddComponent<T>(Type serviceType, LifestyleType lifestyle);
[Obsolete("Use Register(Component.For(serviceType).ImplementedBy<T>().Lifestyle.Is(lifestyle)) or generic version instead.")]
[EditorBrowsable(EditorBrowsableState.Advanced)]
void AddComponent<T>(Type serviceType, LifestyleType lifestyle, bool overwriteLifestyle);
[Obsolete("Use Register(Component.For<T>().Instance(instance)) instead.")]
[EditorBrowsable(EditorBrowsableState.Advanced)]
void AddComponentInstance<T>(object instance);
[EditorBrowsable(EditorBrowsableState.Advanced)]
[Obsolete("Use Register(Component.For(serviceType).ImplementedBy<T>().Instance(instance)) or generic version instead.")]
void AddComponentInstance<T>(Type serviceType, object instance);
[Obsolete("Use Register(Component.For(instance.GetType()).Named(key).Instance(instance)) or generic version instead.")]
[EditorBrowsable(EditorBrowsableState.Advanced)]
void AddComponentInstance(string key, object instance);
[Obsolete("Use Register(Component.For(serviceType).Named(key).Instance(instance)) or generic version instead.")]
[EditorBrowsable(EditorBrowsableState.Advanced)]
void AddComponentInstance(string key, Type serviceType, object instance);
[Obsolete("Use Register(Component.For(serviceType).ImplementedBy(classType).Named(key).Instance(instance)) or generic version instead.")]
[EditorBrowsable(EditorBrowsableState.Advanced)]
void AddComponentInstance(string key, Type serviceType, Type classType, object instance);
[EditorBrowsable(EditorBrowsableState.Advanced)]
[Obsolete("Use Register(Component.For(classType).Named(key).ExtendedProperties(extendedProperties)) or generic version instead.")]
void AddComponentWithExtendedProperties(string key, Type classType, IDictionary extendedProperties);
[Obsolete("Use Register(Component.For(serviceType).ImplementedBy(classType).Named(key).ExtendedProperties(extendedProperties)) or generic version instead.")]
[EditorBrowsable(EditorBrowsableState.Advanced)]
void AddComponentWithExtendedProperties(string key, Type serviceType, Type classType, IDictionary extendedProperties);
object Resolve(Type service);
Array ResolveAll(Type service);
Array ResolveAll(Type service, IDictionary arguments);
Array ResolveAll(Type service, object argumentsAsAnonymousType);
object Resolve(Type service, IDictionary arguments);
[Obsolete("Use Resolve<object>(key, arguments) instead")]
[EditorBrowsable(EditorBrowsableState.Advanced)]
object Resolve(string key, IDictionary arguments);
object Resolve(Type service, object argumentsAsAnonymousType);
[EditorBrowsable(EditorBrowsableState.Advanced)]
[Obsolete("Use Resolve<object>(key, argumentsAsAnonymousType) instead")]
object Resolve(string key, object argumentsAsAnonymousType);
object Resolve(string key, Type service);
T Resolve<T>(IDictionary arguments);
T Resolve<T>(object argumentsAsAnonymousType);
T Resolve<T>();
T Resolve<T>(string key);
T Resolve<T>(string key, IDictionary arguments);
TService[] ResolveAll<TService>();
TService[] ResolveAll<TService>(IDictionary arguments);
TService[] ResolveAll<TService>(object argumentsAsAnonymousType);
object Resolve(string key, Type service, IDictionary arguments);
}
}