API Differences between 2.5.3 and 2.1.1
1863 Additions
25 Removals
Castle.Core
Castle.Core.Interceptor
Castle.Core.Internal
Castle.Facilities.EventWiring
Castle.Facilities.FactorySupport
-
public class AccessorActivator : DefaultComponentActivator
-
public class FactoryActivator : DefaultComponentActivator
-
public class FactorySupportFacility : AbstractFacility
- public FactorySupportFacility()
- public void AddAccessor<TService, TFactory>(string serviceKey, string instanceAccessorMethod)
- public void AddAccessor<TService, TFactory>(string serviceKey, string instanceAccessorMethod, string factoryId)
- public void AddFactory<TService, TFactory>(string serviceKey, string factoryCreateMethodName)
- public void AddFactory<TService, TFactory>(string serviceKey, string factoryCreateMethodName, string factoryId)
Castle.Facilities.Remoting
Castle.Facilities.Remoting.CustomActivators
Castle.Facilities.Startable
Castle.Facilities.TypedFactory
Castle.Facilities.TypedFactory.Internal
Castle.MicroKernel
-
public abstract class AbstractSubSystem : MarshalByRefObject, ISubSystem
-
public class Arguments : IDictionary, ICollection, IEnumerable
-
public class Burden
-
public class CircularDependencyException : Exception
-
public sealed delegate ComponentDataDelegate : MulticastDelegate
-
public sealed delegate ComponentInstanceDelegate : MulticastDelegate
-
public sealed delegate ComponentModelDelegate : MulticastDelegate
-
public class ComponentNotFoundException : Exception
-
public class ComponentReference<T> : IReference<T>
-
public class ComponentRegistrationException : Exception
-
public class DefaultKernel : MarshalByRefObject, IKernelInternal, IKernel, IServiceProviderEx, IServiceProvider, IKernelEvents, IDisposable, IDeserializationCallback, IKernelEventsInternal
- public IComponentModelBuilder ComponentModelBuilder { get; set; }
- public virtual IConfigurationStore ConfigurationStore { get; set; }
- protected IConversionManager ConversionSubSystem { get; }
- public GraphNode[] GraphNodes { get; }
- public IHandlerFactory HandlerFactory { get; }
- public virtual object this[string key] { get; }
- public virtual object this[Type service] { get; }
- protected INamingSubSystem NamingSubSystem { get; }
- public virtual IKernel Parent { get; set; }
- public IProxyFactory ProxyFactory { get; set; }
- public virtual IReleasePolicy ReleasePolicy { get; set; }
- public IDependencyResolver Resolver { get; }
- public event EventHandler AddedAsChildKernel
- public event ComponentInstanceDelegate ComponentCreated
- public event ComponentInstanceDelegate ComponentDestroyed
- public event ComponentModelDelegate ComponentModelCreated
- public event ComponentDataDelegate ComponentRegistered
- public event ComponentDataDelegate ComponentUnregistered
- public event DependencyDelegate DependencyResolving
- public event HandlerDelegate HandlerRegistered
- public event HandlersChangedDelegate HandlersChanged
- public event EventHandler RegistrationCompleted
- public event EventHandler RemovedAsChildKernel
- public DefaultKernel()
- public DefaultKernel(IDependencyResolver resolver, IProxyFactory proxyFactory)
- public DefaultKernel(IProxyFactory proxyFactory)
- public DefaultKernel(SerializationInfo info, StreamingContext context)
- public virtual void AddChildKernel(IKernel childKernel)
- public virtual void AddComponent(string key, Type classType)
- public void AddComponent(string key, Type classType, LifestyleType lifestyle)
- public void AddComponent(string key, Type classType, LifestyleType lifestyle, bool overwriteLifestyle)
- public virtual void AddComponent(string key, Type serviceType, Type classType)
- public void AddComponent(string key, Type serviceType, Type classType, LifestyleType lifestyle)
- public void AddComponent(string key, Type serviceType, Type classType, LifestyleType lifestyle, bool overwriteLifestyle)
- public void AddComponent<T>()
- public void AddComponent<T>(LifestyleType lifestyle)
- public void AddComponent<T>(LifestyleType lifestyle, bool overwriteLifestyle)
- public void AddComponent<T>(Type serviceType)
- public void AddComponent<T>(Type serviceType, LifestyleType lifestyle)
- public void AddComponent<T>(Type serviceType, LifestyleType lifestyle, bool overwriteLifestyle)
- public void AddComponentInstance(string key, object instance)
- public void AddComponentInstance(string key, Type serviceType, object instance)
- public void AddComponentInstance(string key, Type serviceType, Type classType, object instance)
- public void AddComponentInstance<T>(object instance)
- public void AddComponentInstance<T>(Type serviceType, object instance)
- public virtual void AddComponentWithExtendedProperties(string key, Type classType, IDictionary extendedProperties)
- public virtual void AddComponentWithExtendedProperties(string key, Type serviceType, Type classType, IDictionary extendedProperties)
- public virtual void AddCustomComponent(ComponentModel model)
- public virtual IKernel AddFacility(string key, IFacility facility)
- public IKernel AddFacility<T>(string key) where T : IFacility
- public IKernel AddFacility<T>(string key, Action<T> onCreate) where T : IFacility
- public IKernel AddFacility<T>(string key, Func<T, object> onCreate) where T : IFacility
- public IKernel AddFacility<T>() where T : IFacility
- public IKernel AddFacility<T>(Action<T> onCreate) where T : IFacility
- public IKernel AddFacility<T>(Func<T, object> onCreate) where T : IFacility
- public void AddHandlerSelector(IHandlerSelector selector)
- public virtual void AddSubSystem(string key, ISubSystem subsystem)
- public virtual IComponentActivator CreateComponentActivator(ComponentModel model)
- protected CreationContext CreateCreationContext(IHandler handler, Type typeToExtractGenericArguments, IDictionary additionalArguments, CreationContext parent)
- public virtual void Dispose()
- protected void DisposeHandler(IHandler handler)
- public virtual IHandler[] GetAssignableHandlers(Type service)
- public virtual IFacility[] GetFacilities()
- public virtual IHandler GetHandler(string key)
- public virtual IHandler GetHandler(Type service)
- public virtual IHandler[] GetHandlers(Type service)
- public void GetObjectData(SerializationInfo info, StreamingContext context)
- public object GetService(Type serviceType)
- public T GetService<T>()
- public virtual ISubSystem GetSubSystem(string key)
- public virtual bool HasComponent(string key)
- public virtual bool HasComponent(Type serviceType)
- public IDisposable OptimizeDependencyResolution()
- protected virtual void RaiseAddedAsChildKernel()
- protected virtual void RaiseComponentCreated(ComponentModel model, object instance)
- protected virtual void RaiseComponentDestroyed(ComponentModel model, object instance)
- protected virtual void RaiseComponentModelCreated(ComponentModel model)
- protected virtual void RaiseComponentRegistered(string key, IHandler handler)
- protected virtual void RaiseComponentUnregistered(string key, IHandler handler)
- protected virtual void RaiseDependencyResolving(ComponentModel client, DependencyModel model, object dependency)
- public virtual void RaiseHandlerRegistered(IHandler handler)
- public virtual void RaiseHandlersChanged()
- protected virtual void RaiseRegistrationCompleted()
- protected virtual void RaiseRemovedAsChildKernel()
- public IKernel Register(IRegistration[] registrations)
- public void RegisterCustomDependencies(Type service, IDictionary dependencies)
- public void RegisterCustomDependencies(Type service, object dependenciesAsAnonymousType)
- public void RegisterCustomDependencies(string key, IDictionary dependencies)
- public void RegisterCustomDependencies(string key, object dependenciesAsAnonymousType)
- protected void RegisterHandler(string key, IHandler handler)
- protected void RegisterHandler(string key, IHandler handler, bool skipRegistration)
- protected virtual void RegisterSubSystems()
- public virtual void ReleaseComponent(object instance)
- public virtual void RemoveChildKernel(IKernel childKernel)
- public virtual bool RemoveComponent(string key)
- public virtual object Resolve(string key, Type service)
- public virtual object Resolve(string key, Type service, IDictionary arguments)
- public T Resolve<T>(IDictionary arguments)
- public T Resolve<T>(object argumentsAsAnonymousType)
- public T Resolve<T>()
- public T Resolve<T>(string key)
- public T Resolve<T>(string key, IDictionary arguments)
- public object Resolve(Type service)
- public object Resolve(Type service, IDictionary arguments)
- public object Resolve(Type service, object argumentsAsAnonymousType)
- public object Resolve(string key, IDictionary arguments)
- public object Resolve(string key, object argumentsAsAnonymousType)
- public Array ResolveAll(Type service)
- public Array ResolveAll(Type service, IDictionary arguments)
- public Array ResolveAll(Type service, object argumentsAsAnonymousType)
- public TService[] ResolveAll<TService>(object argumentsAsAnonymousType)
- public TService[] ResolveAll<TService>(IDictionary arguments)
- public TService[] ResolveAll<TService>()
- protected object ResolveComponent(IHandler handler)
- protected object ResolveComponent(IHandler handler, Type service)
- protected object ResolveComponent(IHandler handler, IDictionary additionalArguments)
- protected object ResolveComponent(IHandler handler, Type service, IDictionary additionalArguments)
- protected object TryResolveComponent(IHandler handler, Type service, IDictionary additionalArguments)
- protected virtual IHandler WrapParentHandler(IHandler parentHandler)
-
public sealed delegate DependencyDelegate : MulticastDelegate
-
public sealed delegate HandlerDelegate : MulticastDelegate
-
public sealed delegate HandlersChangedDelegate : MulticastDelegate
-
public enum HandlerState
-
public sealed delegate HandlerStateDelegate : MulticastDelegate
-
public interface IComponentActivator
-
public interface IComponentModelBuilder
-
public interface IDependencyResolver : ISubDependencyResolver
-
public interface IFacility
-
public interface IHandler : ISubDependencyResolver
-
public interface IHandlerFactory
-
public interface IHandlerSelector
-
public interface IKernel : IServiceProviderEx, IServiceProvider, IKernelEvents, IDisposable
- IComponentModelBuilder ComponentModelBuilder { get; }
- IConfigurationStore ConfigurationStore { get; set; }
- GraphNode[] GraphNodes { get; }
- IHandlerFactory HandlerFactory { get; }
- object this[string key] { get; }
- object this[Type service] { get; }
- IKernel Parent { get; set; }
- IProxyFactory ProxyFactory { get; set; }
- IReleasePolicy ReleasePolicy { get; set; }
- IDependencyResolver Resolver { get; }
- void AddChildKernel(IKernel kernel)
- void AddComponent(string key, Type classType)
- void AddComponent(string key, Type classType, LifestyleType lifestyle)
- void AddComponent(string key, Type classType, LifestyleType lifestyle, bool overwriteLifestyle)
- void AddComponent(string key, Type serviceType, Type classType)
- void AddComponent(string key, Type serviceType, Type classType, LifestyleType lifestyle)
- void AddComponent(string key, Type serviceType, Type classType, LifestyleType lifestyle, bool overwriteLifestyle)
- void AddComponent<T>()
- void AddComponent<T>(LifestyleType lifestyle)
- void AddComponent<T>(LifestyleType lifestyle, bool overwriteLifestyle)
- void AddComponent<T>(Type serviceType)
- void AddComponent<T>(Type serviceType, LifestyleType lifestyle)
- void AddComponent<T>(Type serviceType, LifestyleType lifestyle, bool overwriteLifestyle)
- void AddComponentInstance<T>(object instance)
- void AddComponentInstance<T>(Type serviceType, object instance)
- void AddComponentInstance(string key, object instance)
- void AddComponentInstance(string key, Type serviceType, object instance)
- void AddComponentInstance(string key, Type serviceType, Type classType, object instance)
- void AddComponentWithExtendedProperties(string key, Type classType, IDictionary extendedProperties)
- void AddComponentWithExtendedProperties(string key, Type serviceType, Type classType, IDictionary extendedProperties)
- IKernel AddFacility(string key, IFacility facility)
- IKernel AddFacility<T>(string key) where T : IFacility
- IKernel AddFacility<T>(string key, Action<T> onCreate) where T : IFacility
- IKernel AddFacility<T>(string key, Func<T, object> onCreate) where T : IFacility
- IKernel AddFacility<T>() where T : IFacility
- IKernel AddFacility<T>(Action<T> onCreate) where T : IFacility
- IKernel AddFacility<T>(Func<T, object> onCreate) where T : IFacility
- void AddHandlerSelector(IHandlerSelector selector)
- void AddSubSystem(string key, ISubSystem subsystem)
- IHandler[] GetAssignableHandlers(Type service)
- IFacility[] GetFacilities()
- IHandler GetHandler(string key)
- IHandler GetHandler(Type service)
- IHandler[] GetHandlers(Type service)
- ISubSystem GetSubSystem(string key)
- bool HasComponent(string key)
- bool HasComponent(Type service)
- IKernel Register(IRegistration[] registrations)
- 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)
- void RemoveChildKernel(IKernel kernel)
- bool RemoveComponent(string key)
- object Resolve(Type service)
- object Resolve(Type service, IDictionary arguments)
- object Resolve(string key, IDictionary arguments)
- object Resolve(Type service, object argumentsAsAnonymousType)
- 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)
- object Resolve(string key, Type service, IDictionary arguments)
- Array ResolveAll(Type service)
- Array ResolveAll(Type service, IDictionary arguments)
- Array ResolveAll(Type service, object argumentsAsAnonymousType)
- TService[] ResolveAll<TService>()
- TService[] ResolveAll<TService>(IDictionary arguments)
- TService[] ResolveAll<TService>(object argumentsAsAnonymousType)
-
public interface IKernelEvents
-
public interface IKernelInternal : IKernel, IServiceProviderEx, IServiceProvider, IKernelEvents, IDisposable
-
public interface ILifestyleManager : IDisposable
-
public class InstanceReference<T> : IReference<T>
-
public interface IProxyFactory
-
public interface IProxyFactoryExtension
-
public interface IReference<T>
-
public interface IReleasePolicy : IDisposable
-
public interface ISubDependencyResolver
-
public interface ISubSystem
-
public class KernelException : Exception
-
public abstract class SubSystemConstants
Castle.MicroKernel.ComponentActivator
-
public abstract class AbstractComponentActivator : IComponentActivator
-
public class ComponentActivatorException : Exception
-
public class DefaultComponentActivator : AbstractComponentActivator
- public DefaultComponentActivator(ComponentModel model, IKernel kernel, ComponentInstanceDelegate onCreation, ComponentInstanceDelegate onDestruction)
- protected virtual void ApplyCommissionConcerns(object instance)
- protected virtual void ApplyConcerns(IEnumerable<ILifecycleConcern> steps, object instance)
- protected virtual void ApplyDecommissionConcerns(object instance)
- protected virtual bool CanSatisfyDependency(CreationContext context, DependencyModel dep)
- protected virtual object[] CreateConstructorArguments(ConstructorCandidate constructor, CreationContext context, out Type signature)
- protected virtual object CreateInstance(CreationContext context, object[] arguments, Type[] signature)
- protected virtual object Instantiate(CreationContext context)
- protected virtual ConstructorCandidate SelectEligibleConstructor(CreationContext context)
- protected virtual void SetUpProperties(object instance, CreationContext context)
-
public class ExternalInstanceActivator : AbstractComponentActivator, IDependencyAwareActivator
-
public class FactoryMethodActivator<T> : DefaultComponentActivator, IDependencyAwareActivator
-
public interface IDependencyAwareActivator
-
public class NoResolvableConstructorFoundException : ComponentActivatorException
Castle.MicroKernel.Context
-
public class ComponentArgumentsEnumerator : IDictionaryEnumerator, IEnumerator
-
public class CreationContext : MarshalByRefObject, ISubDependencyResolver
- public class ResolutionContext : IDisposable
- public static CreationContext Empty { get; }
- public IDictionary AdditionalParameters { get; }
- public DependencyModelCollection Dependencies { get; }
- public Type[] GenericArguments { get; }
- public IHandler Handler { get; }
- public bool HasAdditionalParameters { get; }
- public IReleasePolicy ReleasePolicy { get; }
- public CreationContext(Type typeToExtractGenericArguments, CreationContext parentContext, bool propagateInlineDependencies)
- public CreationContext(IHandler handler, IReleasePolicy releasePolicy, Type typeToExtractGenericArguments, IDictionary additionalArguments, ITypeConverter conversionManager, CreationContext parent)
- public void AddContextualProperty(object key, object value)
- public virtual bool CanResolve(CreationContext context, ISubDependencyResolver contextHandlerResolver, ComponentModel model, DependencyModel dependency)
- public ResolutionContext EnterResolutionContext(IHandler handlerBeingResolved)
- public ResolutionContext EnterResolutionContext(IHandler handlerBeingResolved, bool createBurden)
- public object GetContextualProperty(object key)
- public bool IsInResolutionContext(IHandler handler)
- public virtual object Resolve(CreationContext context, ISubDependencyResolver contextHandlerResolver, ComponentModel model, DependencyModel dependency)
-
public class FallbackArgumentsStore : IArgumentsStore, IEnumerable<KeyValuePair<object, object>>, IEnumerable
-
public interface IArgumentsStore : IEnumerable<KeyValuePair<object, object>>, IEnumerable
-
public class NamedArgumentsStore : IArgumentsStore, IEnumerable<KeyValuePair<object, object>>, IEnumerable
-
public class TypedArgumentsStore : IArgumentsStore, IEnumerable<KeyValuePair<object, object>>, IEnumerable
Castle.MicroKernel.Facilities
Castle.MicroKernel.Handlers
-
public abstract class AbstractHandler : MarshalByRefObject, IHandler, ISubDependencyResolver, IExposeDependencyInfo, IDisposable
- protected ILifestyleManager lifestyleManager
- public ComponentModel ComponentModel { get; }
- public HandlerState CurrentState { get; }
- protected IDictionary<string, DependencyModel> DependenciesByKey { get; }
- protected IDictionary<Type, DependencyModel> DependenciesByService { get; }
- protected IKernelInternal Kernel { get; }
- public Type Service { get; }
- public event HandlerStateDelegate OnHandlerStateChanged
- protected AbstractHandler(ComponentModel model)
- public void AddCustomDependencyValue(object key, object value)
- protected void AddDependency(DependencyModel dependency)
- public virtual bool CanResolve(CreationContext context, ISubDependencyResolver contextHandlerResolver, ComponentModel model, DependencyModel dependency)
- protected bool CanSatisfyConstructor(ConstructorCandidate constructor)
- protected bool CanSatisfyDependency(DependencyModel dependency)
- protected virtual ILifestyleManager CreateLifestyleManager(IComponentActivator activator)
- protected void DependencySatisfied(ref bool stateChanged)
- public virtual void Dispose()
- protected virtual void EnsureDependenciesCanBeSatisfied(IDependencyAwareActivator activator)
- public bool HasCustomParameter(object key)
- public virtual void Init(IKernel kernel)
- public bool IsBeingResolvedInContext(CreationContext context)
- public string ObtainDependencyDetails(IList dependenciesChecked)
- protected void OnAddedAsChildKernel(object sender, EventArgs e)
- public virtual bool Release(object instance)
- public abstract bool ReleaseCore(object instance)
- public void RemoveCustomDependencyValue(object key)
- public object Resolve(CreationContext context)
- public virtual object Resolve(CreationContext context, ISubDependencyResolver contextHandlerResolver, ComponentModel model, DependencyModel dependency)
- protected virtual object Resolve(CreationContext context, bool instanceRequired)
- protected abstract object ResolveCore(CreationContext context, bool requiresDecommission, bool instanceRequired)
- protected void SetNewState(HandlerState newState)
- public object TryResolve(CreationContext context)
-
public class ComponentLifecycleExtension : IResolveExtension, IReleaseExtension
-
public sealed delegate ComponentReleasingDelegate : MulticastDelegate
-
public sealed delegate ComponentResolvingDelegate : MulticastDelegate
-
public class DefaultGenericHandler : AbstractHandler
-
public class DefaultHandler : AbstractHandler
-
public class DefaultHandlerFactory : IHandlerFactory
-
public class ExtendedHandler : DefaultHandler
-
public class ForwardingHandler : IHandler, ISubDependencyResolver
-
public class HandlerException : Exception
-
public static class HandlerExtensionsUtil
-
public interface IExposeDependencyInfo
-
public interface IReleaseExtension
-
public interface IResolveExtension
-
public class ParentHandlerWithChildResolver : IHandler, ISubDependencyResolver, IDisposable
-
public class ReleaseInvocation
-
public class ResolveInvocation
Castle.MicroKernel.LifecycleConcerns
Castle.MicroKernel.Lifestyle
Castle.MicroKernel.Lifestyle.Pool
Castle.MicroKernel.ModelBuilder
Castle.MicroKernel.ModelBuilder.Inspectors
Castle.MicroKernel.Proxy
Castle.MicroKernel.Registration
-
public abstract class AbstractPropertyDescriptor<S> : ComponentDescriptor<S>
-
public static class AllTypes
-
public class AllTypesOf
-
public class AssemblyFilter : IAssemblyProvider
-
public class Attrib : Node
-
public class AttributeDescriptor<S> : ComponentDescriptor<S>
-
public class AttributeKeyDescriptor<S>
-
public class BasedOnDescriptor : IRegistration
-
public abstract class Child
-
public class ComplexChild : Node
-
public static class Component
- public static ComponentRegistration For(Type serviceType)
- public static ComponentRegistration For(Type[] serviceTypes)
- public static ComponentRegistration For(IEnumerable<Type> serviceTypes)
- public static ComponentRegistration<S> For<S>()
- public static ComponentRegistration For(ComponentModel model)
- public static ComponentRegistration<S> For<S, F>()
- public static ComponentRegistration<S> For<S, F1, F2>()
- public static ComponentRegistration<S> For<S, F1, F2, F3>()
- public static ComponentRegistration<S> For<S, F1, F2, F3, F4>()
- public static bool HasAttribute<TAttribute>(Type type) where TAttribute : Attribute
- public static Predicate<Type> HasAttribute<TAttribute>(Predicate<TAttribute> filter) where TAttribute : Attribute
- public static bool IsCastleComponent(Type type)
- public static Predicate<Type> IsInNamespace(string namespace)
- public static Predicate<Type> IsInNamespace(string namespace, bool includeSubnamespaces)
- public static Predicate<Type> IsInSameNamespaceAs(Type type)
- public static Predicate<Type> IsInSameNamespaceAs(Type type, bool includeSubnamespaces)
- public static Predicate<Type> IsInSameNamespaceAs<T>()
- public static Predicate<Type> IsInSameNamespaceAs<T>(bool includeSubnamespaces)
- public static bool ServiceAlreadyRegistered(IKernel kernel, ComponentModel model)
-
public static class ComponentDependencyRegistrationExtensions
-
public abstract class ComponentDescriptor<S>
-
public sealed delegate ComponentFilter : MulticastDelegate
-
public class ComponentRegistration : ComponentRegistration<object>
-
public class ComponentRegistration<TService> : IRegistration
- public Type[] ForwardedTypes { get; }
- public Type Implementation { get; }
- public LifestyleGroup<TService> LifeStyle { get; }
- public string Name { get; }
- public ProxyGroup<TService> Proxy { get; }
- public Type ServiceType { get; protected set; }
- public ComponentRegistration()
- protected ComponentRegistration(ComponentModel componentModel)
- public ComponentRegistration<TService> ActAs(object[] actors)
- public ComponentRegistration<TService> Activator<A>() where A : IComponentActivator
- public ComponentRegistration<TService> AddAttributeDescriptor(string key, string value)
- public ComponentRegistration<TService> AddDescriptor(ComponentDescriptor<TService> descriptor)
- public AttributeKeyDescriptor<TService> Attribute(string key)
- public ComponentRegistration<TService> Configuration(Node[] configNodes)
- public ComponentRegistration<TService> Configuration(IConfiguration configuration)
- public ComponentRegistration<TService> CustomDependencies(Property[] dependencies)
- public ComponentRegistration<TService> CustomDependencies(IDictionary dependencies)
- public ComponentRegistration<TService> CustomDependencies(object dependencies)
- public ComponentRegistration<TService> DependsOn(Property[] dependencies)
- public ComponentRegistration<TService> DependsOn(IDictionary dependencies)
- public ComponentRegistration<TService> DependsOn(object anonymous)
- public ComponentRegistration<TService> DynamicParameters(DynamicParametersDelegate resolve)
- public ComponentRegistration<TService> DynamicParameters(DynamicParametersResolveDelegate resolve)
- public ComponentRegistration<TService> DynamicParameters(DynamicParametersWithContextResolveDelegate resolve)
- public ComponentRegistration<TService> ExtendedProperties(Property[] properties)
- public ComponentRegistration<TService> ExtendedProperties(object anonymous)
- public ComponentRegistration<TService> Forward(Type[] types)
- public ComponentRegistration<TService> Forward<TSecondService>()
- public ComponentRegistration<TService> Forward<TSecondService, TThirdService>()
- public ComponentRegistration<TService> Forward<TSecondService, TThirdService, TFourthService>()
- public ComponentRegistration<TService> Forward<TSecondService, TThirdService, TFourthService, TFifthService>()
- public ComponentRegistration<TService> Forward(IEnumerable<Type> types)
- public ComponentRegistration<TService> If(ComponentFilter ifFilter)
- public ComponentRegistration<TService> ImplementedBy<TImpl>() where TImpl : TService
- public ComponentRegistration<TService> ImplementedBy(Type type)
- public ComponentRegistration<TService> Instance(TService instance)
- public InterceptorGroup<TService> Interceptors(InterceptorReference[] interceptors)
- public ComponentRegistration<TService> Interceptors(Type[] interceptors)
- public ComponentRegistration<TService> Interceptors<TInterceptor>() where TInterceptor : IInterceptor
- public ComponentRegistration<TService> Interceptors<TInterceptor1, TInterceptor2>() where TInterceptor1 : IInterceptor where TInterceptor2 : IInterceptor
- public ComponentRegistration<TService> Interceptors(string[] keys)
- public ComponentRegistration<TService> Named(string name)
- public ComponentRegistration<TService> OnCreate(OnCreateActionDelegate<TService>[] actions)
- public ComponentRegistration<TService> OverWrite()
- public ComponentRegistration<TService> Parameters(Parameter[] parameters)
- public ComponentRegistration<TService> SelectInterceptorsWith(IInterceptorSelector selector)
- public ComponentRegistration<TService> SelectInterceptorsWith(Action<ItemRegistration<IInterceptorSelector>> selector)
- public ComponentRegistration<TService> ServiceOverrides(ServiceOverride[] overrides)
- public ComponentRegistration<TService> ServiceOverrides(IDictionary overrides)
- public ComponentRegistration<TService> ServiceOverrides(object anonymous)
- public ComponentRegistration<TService> Unless(ComponentFilter unlessFilter)
- public ComponentRegistration<TService> UsingFactory<U, V>(Converter<U, V> factory) where V : TService
- public ComponentRegistration<TService> UsingFactoryMethod<TImpl>(Func<TImpl> factoryMethod) where TImpl : TService
- public ComponentRegistration<TService> UsingFactoryMethod<TImpl>(Converter<IKernel, TImpl> factoryMethod) where TImpl : TService
- public ComponentRegistration<TService> UsingFactoryMethod<TImpl>(Func<IKernel, ComponentModel, CreationContext, TImpl> factoryMethod) where TImpl : TService
- public ComponentRegistration<TService> UsingFactoryMethod<TImpl>(Func<IKernel, CreationContext, TImpl> factoryMethod) where TImpl : TService
-
public class CompoundChild : Node
-
public class ConfigurationDescriptor<S> : ComponentDescriptor<S>
-
public sealed delegate ConfigureDelegate : MulticastDelegate
-
public class ConfigureDescriptor
-
public class CustomDependencyDescriptor<S> : AbstractPropertyDescriptor<S>
-
public sealed delegate DynamicParametersDelegate : MulticastDelegate
-
public class DynamicParametersDescriptor<S> : ComponentDescriptor<S>
-
public sealed delegate DynamicParametersResolveDelegate : MulticastDelegate
-
public sealed delegate DynamicParametersWithContextResolveDelegate : MulticastDelegate
-
public class ExtendedPropertiesDescriptor<S> : AbstractPropertyDescriptor<S>
-
public class FromAssemblyDescriptor : FromDescriptor
-
public abstract class FromDescriptor : IRegistration
-
public class FromTypesDescriptor : FromDescriptor
-
public interface IRegistration
-
public interface IWindsorInstaller
-
public class LifestyleDescriptor<S> : ComponentDescriptor<S>
-
public class NamedAttribute
-
public class NamedChild : Node
-
public abstract class Node
-
public class OnCreateComponentDescriptor<S> : ComponentDescriptor<S>
-
public class Parameter
-
public class ParameterKey
-
public class ParametersDescriptor<S> : ComponentDescriptor<S>
-
public class Property
-
public class PropertyKey
-
public class ReferenceDependencyDescriptor<S> : ComponentDescriptor<S>
-
public abstract class RegistrationGroup<S>
-
public class ServiceDescriptor
-
public class ServiceOverride : Property
-
public class ServiceOverrideDescriptor<S> : AbstractPropertyDescriptor<S>
-
public class ServiceOverrideKey
-
public class SimpleChild : Node
Castle.MicroKernel.Registration.Interceptor
Castle.MicroKernel.Registration.Lifestyle
Castle.MicroKernel.Registration.Proxy
Castle.MicroKernel.Releasers
Castle.MicroKernel.Resolvers
-
public class DefaultDependencyResolver : IDependencyResolver, ISubDependencyResolver
- public DefaultDependencyResolver()
- public void AddSubResolver(ISubDependencyResolver subResolver)
- public bool CanResolve(CreationContext context, ISubDependencyResolver contextHandlerResolver, ComponentModel model, DependencyModel dependency)
- protected virtual bool CanResolveParameterDependency(ComponentModel model, DependencyModel dependency)
- protected virtual bool CanResolveServiceDependency(CreationContext context, ComponentModel model, DependencyModel dependency)
- protected virtual string (string keyValue, string name)
- public void Initialize(IKernel kernel, DependencyDelegate dependencyDelegate)
- protected virtual ParameterModel ObtainParameterModelMatchingDependency(DependencyModel dependency, ComponentModel model)
- protected virtual CreationContext RebuildContextForParameter(CreationContext current, Type parameterType)
- public void RemoveSubResolver(ISubDependencyResolver subResolver)
- public object Resolve(CreationContext context, ISubDependencyResolver contextHandlerResolver, ComponentModel model, DependencyModel dependency)
- protected virtual object ResolveParameterDependency(CreationContext context, ComponentModel model, DependencyModel dependency)
- protected virtual object ResolveServiceDependency(CreationContext context, ComponentModel model, DependencyModel dependency)
-
public class DependencyResolverException : Exception
-
public interface ILazyComponentLoader
Castle.MicroKernel.Resolvers.SpecializedResolvers
Castle.MicroKernel.SubSystems.Configuration
Castle.MicroKernel.SubSystems.Conversion
Castle.MicroKernel.SubSystems.Naming
Castle.MicroKernel.SubSystems.Resource
Castle.MicroKernel.Util
Castle.Windsor
Castle.Windsor.Configuration
Castle.Windsor.Configuration.Interpreters
-
public abstract class AbstractInterpreter : IConfigurationInterpreter
- protected static readonly string IncludeNodeName
- protected static readonly string PropertiesNodeName
- protected static readonly string InstallersNodeName
- protected static readonly string InstallNodeName
- protected static void AddBootstrapComponentConfig(string id, IConfiguration component, IConfigurationStore store)
- protected static void AddChildContainerConfig(string name, IConfiguration childContainer, IConfigurationStore store)
- protected static void AddComponentConfig(IConfiguration component, IConfigurationStore store)
- protected static void AddComponentConfig(string id, IConfiguration component, IConfigurationStore store)
- protected static void AddFacilityConfig(IConfiguration facility, IConfigurationStore store)
- protected static void AddFacilityConfig(string id, IConfiguration facility, IConfigurationStore store)
- protected static void AddBootstrapComponentConfig(string id, IConfiguration component, IConfigurationStore store)
- protected static void AddChildContainerConfig(string name, IConfiguration childContainer, IConfigurationStore store)
- protected static void AddComponentConfig(IConfiguration component, IConfigurationStore store)
- protected static void AddComponentConfig(string id, IConfiguration component, IConfigurationStore store)
- protected static void AddFacilityConfig(IConfiguration facility, IConfigurationStore store)
- protected static void AddFacilityConfig(string id, IConfiguration facility, IConfigurationStore store)
- protected static void AddInstallerConfig(IConfiguration installer, IConfigurationStore store)
- protected void ProcessInclude(string uri, IConfigurationStore store)
- public abstract void ProcessResource(IResource resource, IConfigurationStore store)
- protected void ProcessInclude(string uri, IConfigurationStore store)
- public abstract void ProcessResource(IResource resource, IConfigurationStore store)
-
public class XmlInterpreter : AbstractInterpreter
Castle.Windsor.Configuration.Interpreters.XmlProcessor.ElementProcessors
Castle.Windsor.Experimental.Debugging
Castle.Windsor.Experimental.Debugging.Extensions
Castle.Windsor.Experimental.Debugging.Primitives
Castle.Windsor.Installer
-
public class AssemblyInstaller : IWindsorInstaller
-
public class CompositeInstaller : IWindsorInstaller
-
public class DefaultComponentInstaller : IComponentsInstaller
- public void SetUp(IWindsorContainer container, IConfigurationStore store)
- protected virtual void SetUpComponents(IConfiguration[] configurations, IWindsorContainer container)
- protected virtual void SetUpFacilities(IConfiguration[] configurations, IWindsorContainer container)
- public void SetUp(IWindsorContainer container, IConfigurationStore store)
- protected virtual void SetUpComponents(IConfiguration[] configurations, IWindsorContainer container, IConversionManager converter)
- protected virtual void SetUpFacilities(IConfiguration[] configurations, IWindsorContainer container, IConversionManager converter)
- protected virtual void SetUpInstallers(IConfiguration[] installers, IWindsorContainer container, IConversionManager converter)
-
public class FromAssembly
-
public class InstallerFactory
Castle.Windsor.Proxy
-
public abstract class AbstractProxyFactory : IProxyFactory
- public abstract object Create(IKernel kernel, object instance, ComponentModel model, CreationContext context, object[] constructorArguments)
- public abstract object Create(IKernel kernel, object instance, ComponentModel model, CreationContext context, object[] constructorArguments)
- public abstract object Create(IProxyFactoryExtension customFactory, IKernel kernel, ComponentModel model, CreationContext context, object[] constructorArguments)
- protected IInterceptor[] ObtainInterceptors(IKernel kernel, ComponentModel model, CreationContext context)
- protected IInterceptor[] ObtainInterceptors(IKernel kernel, ComponentModel model, CreationContext context)
-
public class DefaultProxyFactory : AbstractProxyFactory, IDeserializationCallback