<PackageReference Include="Castle.Windsor" Version="5.0.0-beta001" />
API Differences between 5.0.0-beta001 and 2.0.0
2165 Additions
117 Removals
Castle.Core
-
public sealed class BoundToAttribute : LifestyleAttribute
-
public class CastleComponentAttribute : LifestyleAttribute
-
public sealed class ComponentActivatorAttribute : Attribute
-
public class ComponentDependencyModel : DependencyModel
-
public sealed class ComponentModel : GraphNode
-
public class ComponentName
-
public sealed class ComponentProxyBehaviorAttribute : Attribute
-
public class ConstructorCandidate : IComparable<ConstructorCandidate>
-
public class ConstructorCandidateCollection : IMutableCollection<ConstructorCandidate>, IEnumerable<ConstructorCandidate>, IEnumerable
-
public class ConstructorDependencyModel : DependencyModel
-
public class CustomLifestyleAttribute : LifestyleAttribute
-
public class DependencyModel
-
public class DependencyModelCollection : IMutableCollection<DependencyModel>, IEnumerable<DependencyModel>, IEnumerable
-
public sealed class DoNotSelectAttribute : Attribute
-
public sealed class DoNotWireAttribute : Attribute
-
public interface ICommissionConcern
-
public interface IDecommissionConcern
-
public interface IInitializable
-
public class InterceptorAttribute : Attribute
-
public class InterceptorReference : IReference<IInterceptor>, IEquatable<InterceptorReference>
-
public class InterceptorReferenceCollection : IMutableCollection<InterceptorReference>, IEnumerable<InterceptorReference>, IEnumerable
-
public interface IRecyclable
-
public interface IStartable
-
public class LifecycleConcernsCollection
-
public abstract class LifestyleAttribute : Attribute
-
public enum LifestyleType
-
public class MethodMetaModel
-
public class MethodMetaModelCollection : Collection<MethodMetaModel>
-
public class ParameterModel
-
public class ParameterModelCollection : IEnumerable<ParameterModel>, IEnumerable
-
public sealed class PerThreadAttribute : LifestyleAttribute
-
public sealed class PooledAttribute : LifestyleAttribute
-
public enum PropertiesInspectionBehavior
-
public sealed delegate PropertyDependencyFilter : MulticastDelegate
-
public class PropertyDependencyModel : DependencyModel
-
public enum PropertyFilter
-
public class PropertySet
-
public sealed delegate PropertySetBuilder : MulticastDelegate
-
public class PropertySetCollection : IMutableCollection<PropertySet>, IEnumerable<PropertySet>, IEnumerable
-
public class ScopedAttribute : LifestyleAttribute
-
public sealed class SingletonAttribute : LifestyleAttribute
-
public class StandardPropertyFilters
- public StandardPropertyFilters()
- public static PropertyDependencyFilter Create(PropertyFilter filter)
- public static PropertySet[] Default(ComponentModel model, ICollection<PropertyInfo> properties, PropertySetBuilder propertySetBuilder)
- public static PropertyDependencyFilter FromObsoleteFunction(Func<ComponentModel, PropertyInfo, bool> filter, bool isRequired)
- public static ICollection<PropertyDependencyFilter> GetPropertyFilters(ComponentModel componentModel, bool createIfMissing)
- public static PropertySet[] IgnoreAll(ComponentModel model, ICollection<PropertyInfo> properties, PropertySetBuilder propertySetBuilder)
- public static PropertySet[] IgnoreBase(ComponentModel model, ICollection<PropertyInfo> properties, PropertySetBuilder propertySetBuilder)
- public static PropertyDependencyFilter IgnoreSelected(Func<ComponentModel, PropertyInfo, bool> selector)
- public static PropertySet[] RequireAll(ComponentModel model, ICollection<PropertyInfo> properties, PropertySetBuilder propertySetBuilder)
- public static PropertySet[] RequireBase(ComponentModel model, ICollection<PropertyInfo> properties, PropertySetBuilder propertySetBuilder)
- public static PropertyDependencyFilter RequireSelected(Func<ComponentModel, PropertyInfo, bool> selector)
-
public sealed class TransientAttribute : LifestyleAttribute
Castle.Core.Interceptor
Castle.Core.Internal
Castle.Facilities.Startable
Castle.Facilities.TypedFactory
-
public class DefaultDelegateComponentSelector : DefaultTypedFactoryComponentSelector
-
public class DefaultTypedFactoryComponentSelector : ITypedFactoryComponentSelector
- protected bool FallbackToResolveByTypeIfNameNotFound { get; protected set; }
- protected bool GetMethodsResolveByName { get; protected set; }
- public DefaultTypedFactoryComponentSelector(bool getMethodsResolveByName = true, bool fallbackToResolveByTypeIfNameNotFound = false)
- protected DefaultTypedFactoryComponentSelector()
- protected virtual Func<IKernelInternal, IReleasePolicy, object> BuildFactoryComponent(MethodInfo method, string componentName, Type componentType, Arguments additionalArguments)
- protected virtual Arguments GetArguments(MethodInfo method, object[] arguments)
- protected virtual string GetComponentName(MethodInfo method, object[] arguments)
- protected virtual Type GetComponentType(MethodInfo method, object[] arguments)
- public Func<IKernelInternal, IReleasePolicy, object> SelectComponent(MethodInfo method, Type type, object[] arguments)
-
public class DelegateFactoryActivator : AbstractComponentActivator, IDependencyAwareActivator
-
public class FactoryAttribute : Attribute
-
public class FactoryEntry
-
public interface ITypedFactoryComponentSelector
-
public class TypedFactoryCachingInspector : IContributeComponentModelConstruction
-
public class TypedFactoryComponentResolver
-
public class TypedFactoryConfiguration
-
public class TypedFactoryFacility : AbstractFacility
-
public static class TypedFactoryRegistrationExtensions
Castle.Facilities.TypedFactory.Internal
Castle.MicroKernel
-
public abstract class AbstractSubSystem : MarshalByRefObject, ISubSystem
-
public sealed class Arguments : IEnumerable<KeyValuePair<object, object>>, IEnumerable
-
public class Burden
-
public sealed delegate BurdenReleaseDelegate : MulticastDelegate
-
public class CircularDependencyException : ComponentResolutionException
-
public sealed delegate ComponentDataDelegate : MulticastDelegate
-
public sealed delegate ComponentInstanceDelegate : MulticastDelegate
-
public sealed delegate ComponentModelDelegate : MulticastDelegate
-
public class ComponentNotFoundException : ComponentResolutionException
-
public class ComponentReference<T> : IReference<T>
-
public class ComponentRegistrationException : Exception
-
public class ComponentResolutionException : Exception
-
public class DefaultKernel : MarshalByRefObject, IKernel, IKernelEvents, IDisposable, IKernelInternal
- public IComponentModelBuilder ComponentModelBuilder { get; set; }
- public virtual IConfigurationStore ConfigurationStore { get; set; }
- protected IConversionManager ConversionSubSystem { get; }
- public GraphNode[] GraphNodes { get; }
- public IHandlerFactory HandlerFactory { get; }
- public ILogger Logger { get; set; }
- protected INamingSubSystem NamingSubSystem { get; }
- public virtual IKernel Parent { get; set; }
- public IProxyFactory ProxyFactory { get; set; }
- public 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 DependencyDelegate DependencyResolving
- public event ServiceDelegate EmptyCollectionResolving
- 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 IHandler AddCustomComponent(ComponentModel model)
- public virtual IKernel AddFacility(IFacility facility)
- public IKernel AddFacility<T>() where T : IFacility
- public IKernel AddFacility<T>(Action<T> onCreate) where T : IFacility
- public void AddHandlerSelector(IHandlerSelector selector)
- public void AddHandlersFilter(IHandlersFilter filter)
- public virtual void AddSubSystem(string name, ISubSystem subsystem)
- public virtual IComponentActivator CreateComponentActivator(ComponentModel model)
- protected CreationContext CreateCreationContext(IHandler handler, Type requestedType, Arguments additionalArguments, CreationContext parent, IReleasePolicy policy)
- public virtual ILifestyleManager CreateLifestyleManager(ComponentModel model, IComponentActivator activator)
- public virtual void Dispose()
- protected void DisposeHandler(IHandler handler)
- public virtual IHandler[] GetAssignableHandlers(Type service)
- public virtual IFacility[] GetFacilities()
- public virtual IHandler GetHandler(string name)
- public virtual IHandler GetHandler(Type service)
- public virtual IHandler[] GetHandlers(Type service)
- public virtual IHandler[] GetHandlers()
- public void GetObjectData(SerializationInfo info, StreamingContext context)
- public virtual ISubSystem GetSubSystem(string name)
- public virtual bool HasComponent(string name)
- 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 RaiseDependencyResolving(ComponentModel client, DependencyModel model, object dependency)
- protected virtual void RaiseHandlerRegistered(IHandler handler)
- protected virtual void RaiseHandlersChanged()
- protected virtual void RaiseRegistrationCompleted()
- protected virtual void RaiseRemovedAsChildKernel()
- public IKernel Register(IRegistration[] registrations)
- protected virtual void RegisterSubSystems()
- public virtual void ReleaseComponent(object instance)
- public virtual void RemoveChildKernel(IKernel childKernel)
- public virtual object Resolve(string key, Type service)
- public virtual object Resolve(string key, Type service, Arguments arguments)
- public T Resolve<T>(Arguments arguments)
- public T Resolve<T>()
- public T Resolve<T>(string key)
- public T Resolve<T>(string key, Arguments arguments)
- public object Resolve(Type service)
- public object Resolve(Type service, Arguments arguments)
- public Array ResolveAll(Type service)
- public Array ResolveAll(Type service, Arguments arguments)
- public TService[] ResolveAll<TService>(Arguments arguments)
- public TService[] ResolveAll<TService>()
- protected object ResolveComponent(IHandler handler, Type service, Arguments additionalArguments, IReleasePolicy policy)
- 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 IContextLifestyleManager
-
public interface IDependencyResolver : ISubDependencyResolver
-
public interface IFacility
-
public interface IHandler : ISubDependencyResolver
-
public interface IHandlerFactory
-
public interface IHandlerSelector
-
public interface IHandlersFilter
-
public interface IKernel : IKernelEvents, IDisposable
-
public interface IKernelEvents
-
public interface IKernelInternal : IKernel, IKernelEvents, IDisposable
- ILogger Logger { get; set; }
- IHandler AddCustomComponent(ComponentModel model)
- IComponentActivator CreateComponentActivator(ComponentModel model)
- IHandler CreateHandler(ComponentModel model)
- ILifestyleManager CreateLifestyleManager(ComponentModel model, IComponentActivator activator)
- IHandler LoadHandlerByName(string key, Type service, Arguments arguments)
- IHandler LoadHandlerByType(string key, Type service, Arguments arguments)
- IDisposable OptimizeDependencyResolution()
- void RaiseEventsOnHandlerCreated(IHandler handler)
- object Resolve(Type service, Arguments arguments, IReleasePolicy policy, bool ignoreParentContext = false)
- object Resolve(string key, Type service, Arguments arguments, IReleasePolicy policy)
- Array ResolveAll(Type service, Arguments arguments, IReleasePolicy policy)
-
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 sealed delegate ServiceDelegate : MulticastDelegate
-
public abstract class SubSystemConstants
Castle.MicroKernel.ComponentActivator
-
public abstract class AbstractComponentActivator : IComponentActivator
-
public class ComponentActivatorException : ComponentResolutionException
-
public class DefaultComponentActivator : AbstractComponentActivator
- public DefaultComponentActivator(ComponentModel model, IKernelInternal kernel, ComponentInstanceDelegate onCreation, ComponentInstanceDelegate onDestruction)
- protected virtual bool CanSatisfyDependency(CreationContext context, DependencyModel dependency)
- protected virtual object[] CreateConstructorArguments(ConstructorCandidate constructor, CreationContext context)
- protected virtual object CreateInstance(CreationContext context, ConstructorCandidate constructor, object[] arguments)
- protected object CreateInstanceCore(ConstructorCandidate constructor, object[] arguments, Type implType)
- 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 CreationContext : MarshalByRefObject, ISubDependencyResolver
- public class ResolutionContext : IDisposable
- public Arguments AdditionalArguments { get; }
- public Type[] GenericArguments { get; }
- public IHandler Handler { get; }
- public bool HasAdditionalArguments { get; }
- public virtual bool IsResolving { get; }
- public IReleasePolicy ReleasePolicy { get; set; }
- public Type RequestedType { get; }
- public CreationContext(Type requestedType, CreationContext parentContext, bool propagateInlineDependencies)
- public CreationContext(IHandler handler, IReleasePolicy releasePolicy, Type requestedType, Arguments additionalArguments, ITypeConverter converter, CreationContext parent)
- public static CreationContext CreateEmpty()
- public static CreationContext ForDependencyInspection(IHandler handler)
- public void AttachExistingBurden(Burden burden)
- public void BuildCycleMessageFor(IHandler duplicateHandler, StringBuilder message)
- public virtual bool CanResolve(CreationContext context, ISubDependencyResolver contextHandlerResolver, ComponentModel model, DependencyModel dependency)
- public Burden CreateBurden(IComponentActivator componentActivator, bool trackedExternally)
- public ResolutionContext EnterResolutionContext(IHandler handlerBeingResolved, bool requiresDecommission)
- public ResolutionContext EnterResolutionContext(IHandler handlerBeingResolved, bool trackContext, bool requiresDecommission)
- public object GetContextualProperty(object key)
- public bool IsInResolutionContext(IHandler handler)
- public virtual object Resolve(CreationContext context, ISubDependencyResolver contextHandlerResolver, ComponentModel model, DependencyModel dependency)
- public ResolutionContext SelectScopeRoot(Func<IHandler[], IHandler> scopeRootSelector)
- public void SetContextualProperty(object key, object value)
-
public interface IArgumentsComparer
Castle.MicroKernel.Facilities
Castle.MicroKernel.Handlers
Castle.MicroKernel.Internal
Castle.MicroKernel.LifecycleConcerns
Castle.MicroKernel.Lifestyle
Castle.MicroKernel.Lifestyle.Pool
Castle.MicroKernel.Lifestyle.Scoped
Castle.MicroKernel.ModelBuilder
Castle.MicroKernel.ModelBuilder.Descriptors
Castle.MicroKernel.ModelBuilder.Inspectors
Castle.MicroKernel.Proxy
Castle.MicroKernel.Registration
-
public class AssemblyFilter : IAssemblyProvider
-
public class Attrib : Node
-
public class BasedOnDescriptor : IRegistration
-
public abstract class Child
-
public static class Classes
-
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<TService> For<TService>()
- public static ComponentRegistration<TService1> For<TService1, TService2>()
- public static ComponentRegistration<TService1> For<TService1, TService2, TService3>()
- public static ComponentRegistration<TService1> For<TService1, TService2, TService3, TService4>()
- public static ComponentRegistration<TService1> For<TService1, TService2, TService3, TService4, TService5>()
- 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 class ComponentRegistration : ComponentRegistration<object>
-
public class ComponentRegistration<TService> : IRegistration
- public Type Implementation { get; }
- public LifestyleGroup<TService> LifeStyle { get; }
- public string Name { get; }
- public ProxyGroup<TService> Proxy { get; }
- public ComponentRegistration()
- public ComponentRegistration(Type[] services)
- public ComponentRegistration<TService> Activator<TActivator>() where TActivator : IComponentActivator
- public ComponentRegistration<TService> AddAttributeDescriptor(string key, string value)
- public ComponentRegistration<TService> AddDescriptor(IComponentModelDescriptor descriptor)
- public AttributeKeyDescriptor<TService> Attribute(string key)
- public ComponentRegistration<TService> Configuration(Node[] configNodes)
- public ComponentRegistration<TService> Configuration(IConfiguration configuration)
- public ComponentRegistration<TService> DependsOn(Dependency dependency)
- public ComponentRegistration<TService> DependsOn(Dependency[] dependencies)
- public ComponentRegistration<TService> DependsOn(Arguments dependencies)
- public ComponentRegistration<TService> DependsOn(IDictionary dependencies)
- public ComponentRegistration<TService> DependsOn(object dependenciesAsAnonymousType)
- public ComponentRegistration<TService> DependsOn(DynamicParametersDelegate resolve)
- public ComponentRegistration<TService> DependsOn(DynamicParametersResolveDelegate resolve)
- public ComponentRegistration<TService> DependsOn(DynamicParametersWithContextResolveDelegate resolve)
- 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(Property property)
- public ComponentRegistration<TService> ExtendedProperties(object anonymous)
- public ComponentRegistration<TService> Forward(Type[] types)
- public ComponentRegistration<TService> Forward<TService2>()
- public ComponentRegistration<TService> Forward<TService2, TService3>()
- public ComponentRegistration<TService> Forward<TService2, TService3, TService4>()
- public ComponentRegistration<TService> Forward<TService2, TService3, TService4, TService5>()
- public ComponentRegistration<TService> Forward(IEnumerable<Type> types)
- public ComponentRegistration<TService> ImplementedBy<TImpl>() where TImpl : TService
- public ComponentRegistration<TService> ImplementedBy(Type type)
- public ComponentRegistration<TService> ImplementedBy(Type type, IGenericImplementationMatchingStrategy genericImplementationMatchingStrategy)
- public ComponentRegistration<TService> ImplementedBy(Type type, IGenericServiceStrategy genericServiceStrategy)
- public ComponentRegistration<TService> ImplementedBy(Type type, IGenericImplementationMatchingStrategy genericImplementationMatchingStrategy, IGenericServiceStrategy genericServiceStrategy)
- 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> IsDefault(Predicate<Type> serviceFilter)
- public ComponentRegistration<TService> IsDefault()
- public ComponentRegistration<TService> IsFallback(Predicate<Type> serviceFilter)
- public ComponentRegistration<TService> IsFallback()
- public ComponentRegistration<TService> LifestyleBoundTo<TBaseForRoot>()
- public ComponentRegistration<TService> LifestyleBoundTo(Func<IHandler[], IHandler> scopeRootBinder)
- public ComponentRegistration<TService> LifestyleBoundToNearest<TBaseForRoot>()
- public ComponentRegistration<TService> LifestyleCustom(Type customLifestyleType)
- public ComponentRegistration<TService> LifestyleCustom<TLifestyleManager>() where TLifestyleManager : ILifestyleManager
- public ComponentRegistration<TService> LifestylePerThread()
- public ComponentRegistration<TService> LifestylePooled(int? initialSize = default, int? maxSize = default)
- public ComponentRegistration<TService> LifestyleScoped(Type scopeAccessorType = null)
- public ComponentRegistration<TService> LifestyleScoped<TScopeAccessor>() where TScopeAccessor : IScopeAccessor
- public ComponentRegistration<TService> LifestyleSingleton()
- public ComponentRegistration<TService> LifestyleTransient()
- public ComponentRegistration<TService> Named(string name)
- public ComponentRegistration<TService> NamedAutomatically(string name)
- public ComponentRegistration<TService> OnCreate(Action<TService>[] actions)
- public ComponentRegistration<TService> OnCreate(LifecycleActionDelegate<TService>[] actions)
- public ComponentRegistration<TService> OnDestroy(Action<TService>[] actions)
- public ComponentRegistration<TService> OnDestroy(LifecycleActionDelegate<TService>[] actions)
- public ComponentRegistration<TService> OnlyNewServices()
- public ComponentRegistration<TService> OverWrite()
- public ComponentRegistration<TService> Properties(PropertyFilter filter)
- public ComponentRegistration<TService> PropertiesIgnore(Func<PropertyInfo, bool> propertySelector)
- public ComponentRegistration<TService> PropertiesIgnore(Func<ComponentModel, PropertyInfo, bool> propertySelector)
- public ComponentRegistration<TService> PropertiesRequire(Func<PropertyInfo, bool> propertySelector)
- public ComponentRegistration<TService> PropertiesRequire(Func<ComponentModel, PropertyInfo, bool> propertySelector)
- public ComponentRegistration<TService> SelectInterceptorsWith(IInterceptorSelector selector)
- public ComponentRegistration<TService> SelectInterceptorsWith(Action<ItemRegistration<IInterceptorSelector>> selector)
- public ComponentRegistration<TService> UsingFactory<TFactory, TServiceImpl>(Func<TFactory, TServiceImpl> factory) where TServiceImpl : TService
- public ComponentRegistration<TService> UsingFactoryMethod<TImpl>(Func<TImpl> factoryMethod, bool managedExternally = false) where TImpl : TService
- public ComponentRegistration<TService> UsingFactoryMethod<TImpl>(Func<IKernel, TImpl> factoryMethod, bool managedExternally = false) where TImpl : TService
- public ComponentRegistration<TService> UsingFactoryMethod<TImpl>(Func<IKernel, ComponentModel, CreationContext, TImpl> factoryMethod, bool managedExternally = false) where TImpl : TService
- public ComponentRegistration<TService> UsingFactoryMethod<TImpl>(Func<IKernel, CreationContext, TImpl> factoryMethod) where TImpl : TService
-
public class CompoundChild : Node
-
public sealed class Dependency
- public static Parameter OnAppSettingsValue(string dependencyName, string settingName)
- public static Parameter OnAppSettingsValue(string name)
- public static ServiceOverride OnComponent(string dependencyName, string componentName)
- public static ServiceOverride OnComponent(Type dependencyType, string componentName)
- public static ServiceOverride OnComponent(string dependencyName, Type componentType)
- public static ServiceOverride OnComponent(Type dependencyType, Type componentType)
- public static ServiceOverride OnComponent<TDependencyType, TComponentType>()
- public static ServiceOverride OnComponentCollection(string collectionDependencyName, string[] componentNames)
- public static ServiceOverride OnComponentCollection(Type collectionDependencyType, string[] componentNames)
- public static ServiceOverride OnComponentCollection<TCollectionDependencyType>(string[] componentNames) where TCollectionDependencyType : IEnumerable
- public static ServiceOverride OnComponentCollection(string collectionDependencyName, Type[] componentTypes)
- public static ServiceOverride OnComponentCollection(Type collectionDependencyType, Type[] componentTypes)
- public static ServiceOverride OnComponentCollection<TCollectionDependencyType>(Type[] componentTypes) where TCollectionDependencyType : IEnumerable
- public static Parameter OnConfigValue(string dependencyName, string valueAsString)
- public static Parameter OnConfigValue(string dependencyName, IConfiguration value)
- public static Property OnResource<TResources>(string dependencyName, string resourceName)
- public static Property OnResource(string dependencyName, ResourceManager resourceManager, string resourceName)
- public static Property OnValue(string dependencyName, object value)
- public static Property OnValue(Type dependencyType, object value)
- public static Property OnValue<TDependencyType>(object value)
-
public sealed delegate DynamicParametersDelegate : MulticastDelegate
-
public sealed delegate DynamicParametersResolveDelegate : MulticastDelegate
-
public sealed delegate DynamicParametersWithContextResolveDelegate : MulticastDelegate
-
public class FromAssemblyDescriptor : FromDescriptor
-
public abstract class FromDescriptor : IRegistration
-
public class FromTypesDescriptor : FromDescriptor
-
public interface IRegistration
-
public interface IWindsorInstaller
-
public class NamedAttribute
-
public class NamedChild : Node
-
public abstract class Node
-
public class Parameter
-
public class ParameterKey
-
public class Property
-
public class PropertyKey
-
public abstract class RegistrationGroup<S>
-
public class ServiceDescriptor
-
public class ServiceOverride
-
public class ServiceOverrideKey
-
public class SimpleChild : Node
-
public static class Types
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 CanResolveFromKernel(CreationContext context, ComponentModel model, DependencyModel dependency)
- public void Initialize(IKernelInternal kernel, DependencyDelegate dependencyDelegate)
- 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 ResolveFromKernel(CreationContext context, ComponentModel model, DependencyModel dependency)
-
public class DependencyResolverException : Exception
-
public interface ILazyComponentLoader
-
public class LazyOfTComponentLoader : 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
-
public interface IComponentsInstaller
-
public class InitializationException : Exception
-
public interface IWindsorContainer : IDisposable
- object this[string key] { get; }
- object this[Type service] { get; }
- IWindsorContainer AddComponent(string key, Type classType)
- IWindsorContainer AddComponent(string key, Type serviceType, Type classType)
- IWindsorContainer AddComponent<T>()
- IWindsorContainer AddComponent<T>(string key)
- IWindsorContainer AddComponent<I, T>()
- IWindsorContainer AddComponent<I, T>(string key)
- IWindsorContainer AddComponentLifeStyle(string key, Type classType, LifestyleType lifestyle)
- IWindsorContainer AddComponentLifeStyle(string key, Type serviceType, Type classType, LifestyleType lifestyle)
- IWindsorContainer AddComponentLifeStyle<T>(LifestyleType lifestyle)
- IWindsorContainer AddComponentLifeStyle<T>(string key, LifestyleType lifestyle)
- IWindsorContainer AddComponentLifeStyle<I, T>(LifestyleType lifestyle)
- IWindsorContainer AddComponentLifeStyle<I, T>(string key, LifestyleType lifestyle)
- IWindsorContainer AddComponentProperties<I, T>(IDictionary extendedProperties)
- IWindsorContainer AddComponentProperties<I, T>(string key, IDictionary extendedProperties)
- IWindsorContainer AddComponentWithProperties(string key, Type classType, IDictionary extendedProperties)
- IWindsorContainer AddComponentWithProperties(string key, Type serviceType, Type classType, IDictionary extendedProperties)
- IWindsorContainer AddComponentWithProperties<T>(IDictionary extendedProperties)
- IWindsorContainer AddComponentWithProperties<T>(string key, IDictionary extendedProperties)
- IWindsorContainer AddFacility(string key, IFacility facility)
- IWindsorContainer AddFacility<T>(string key) where T : IFacility
- IWindsorContainer AddFacility<T>(string key, Action<T> onCreate) where T : IFacility
- IWindsorContainer AddFacility<T>(string key, Func<T, object> onCreate) where T : IFacility
- IWindsorContainer AddFacility(IFacility facility)
- IWindsorContainer AddFacility<T>(Action<T> onCreate) where T : IFacility
- IWindsorContainer AddFacility<T>(Func<T, object> onCreate) where T : IFacility
- IWindsorContainer AddFacility<TFacility>(Action<TFacility> onCreate) where TFacility : IFacility
- IWindsorContainer Install(IWindsorInstaller[] installers)
- IWindsorContainer Install(IWindsorInstaller[] installers)
- object Resolve(string key)
- object Resolve(string key, IDictionary arguments)
- object Resolve(string key, object argumentsAsAnonymousType)
- object Resolve(Type service, IDictionary arguments)
- object Resolve(Type service, object argumentsAsAnonymousType)
- object Resolve(Type service, Arguments arguments)
- T Resolve<T>(IDictionary arguments)
- T Resolve<T>(object argumentsAsAnonymousType)
- T Resolve<T>(Arguments arguments)
- T Resolve<T>(string key, IDictionary arguments)
- T Resolve<T>(string key, object argumentsAsAnonymousType)
- object Resolve(string key, Type service, IDictionary arguments)
- object Resolve(string key, Type service, object argumentsAsAnonymousType)
- T Resolve<T>(string key, Arguments arguments)
- object Resolve(string key, Type service, Arguments arguments)
- Array ResolveAll(Type service, IDictionary arguments)
- Array ResolveAll(Type service, object argumentsAsAnonymousType)
- T[] ResolveAll<T>(IDictionary arguments)
- T[] ResolveAll<T>(object argumentsAsAnonymousType)
- Array ResolveAll(Type service, Arguments arguments)
- T[] ResolveAll<T>(Arguments arguments)
-
public interface IWindsorInstaller
-
public class WindsorContainer : MarshalByRefObject, IWindsorContainer, IDisposable
- public virtual object this[string key] { get; }
- public virtual object this[Type service] { get; }
- public WindsorContainer(IConfigurationStore store)
- public WindsorContainer(IConfigurationStore store)
- public virtual IWindsorContainer AddComponent(string key, Type classType)
- public virtual IWindsorContainer AddComponent(string key, Type serviceType, Type classType)
- public IWindsorContainer AddComponent<T>()
- public IWindsorContainer AddComponent<T>(string key)
- public IWindsorContainer AddComponent<I, T>(string key)
- public IWindsorContainer AddComponent<I, T>()
- public IWindsorContainer AddComponentLifeStyle(string key, Type classType, LifestyleType lifestyle)
- public IWindsorContainer AddComponentLifeStyle(string key, Type serviceType, Type classType, LifestyleType lifestyle)
- public IWindsorContainer AddComponentLifeStyle<T>(LifestyleType lifestyle)
- public IWindsorContainer AddComponentLifeStyle<I, T>(LifestyleType lifestyle)
- public IWindsorContainer AddComponentLifeStyle<T>(string key, LifestyleType lifestyle)
- public IWindsorContainer AddComponentLifeStyle<I, T>(string key, LifestyleType lifestyle)
- public IWindsorContainer AddComponentProperties<I, T>(IDictionary extendedProperties)
- public IWindsorContainer AddComponentProperties<I, T>(string key, IDictionary extendedProperties)
- public virtual IWindsorContainer AddComponentWithProperties(string key, Type classType, IDictionary extendedProperties)
- public virtual IWindsorContainer AddComponentWithProperties(string key, Type serviceType, Type classType, IDictionary extendedProperties)
- public IWindsorContainer AddComponentWithProperties<T>(IDictionary extendedProperties)
- public IWindsorContainer AddComponentWithProperties<T>(string key, IDictionary extendedProperties)
- public virtual IWindsorContainer AddFacility(string key, IFacility facility)
- public IWindsorContainer AddFacility<T>(string key) where T : IFacility
- public IWindsorContainer AddFacility<T>(string key, Action<T> onCreate) where T : IFacility
- public IWindsorContainer AddFacility<T>(string key, Func<T, object> onCreate) where T : IFacility
- public IWindsorContainer AddFacility(IFacility facility)
- public IWindsorContainer AddFacility<T>(Func<T, object> onCreate) where T : IFacility
- public object GetService(Type serviceType)
- public T GetService<T>()
- public IWindsorContainer Install(IWindsorInstaller[] installers)
- public IWindsorContainer Install(IWindsorInstaller[] installers)
- public virtual object Resolve(string key)
- public virtual object Resolve(Type service, IDictionary arguments)
- public virtual object Resolve(Type service, object argumentsAsAnonymousType)
- public virtual object Resolve(string key, IDictionary arguments)
- public virtual object Resolve(string key, object argumentsAsAnonymousType)
- public virtual object Resolve(Type service, Arguments arguments)
- public virtual object Resolve(string key, Type service, IDictionary arguments)
- public virtual object Resolve(string key, Type service, object argumentsAsAnonymousType)
- public T Resolve<T>(IDictionary arguments)
- public T Resolve<T>(object argumentsAsAnonymousType)
- public virtual T Resolve<T>(string key, IDictionary arguments)
- public virtual T Resolve<T>(string key, object argumentsAsAnonymousType)
- public virtual object Resolve(string key, Type service, Arguments arguments)
- public T Resolve<T>(Arguments arguments)
- public virtual T Resolve<T>(string key, Arguments arguments)
- public Array ResolveAll(Type service, IDictionary arguments)
- public Array ResolveAll(Type service, object argumentsAsAnonymousType)
- public T[] ResolveAll<T>(IDictionary arguments)
- public T[] ResolveAll<T>(object argumentsAsAnonymousType)
- public Array ResolveAll(Type service, Arguments arguments)
- public T[] ResolveAll<T>(Arguments arguments)
-
public static class WindsorContainerExtensions
- public static object Resolve(this IWindsorContainer container, Type service, IEnumerable<KeyValuePair<string, object>> arguments)
- public static object Resolve(this IWindsorContainer container, string key, Type service, IEnumerable<KeyValuePair<string, object>> arguments)
- public static T Resolve<T>(this IWindsorContainer container, IEnumerable<KeyValuePair<string, object>> arguments)
- public static T Resolve<T>(this IWindsorContainer container, string key, IEnumerable<KeyValuePair<string, object>> arguments)
- public static Array ResolveAll(this IWindsorContainer container, Type service, IEnumerable<KeyValuePair<string, object>> arguments)
- public static T[] ResolveAll<T>(this IWindsorContainer container, IEnumerable<KeyValuePair<string, object>> arguments)
-
public class WindsorServiceProvider : IServiceProviderEx, IServiceProvider
Castle.Windsor.Adapters.ComponentModel
-
public class ContainerAdapter : ContainerWrapper
-
public class ContainerWrapper : IContainerAdapter, IComponent, IContainer, IDisposable, IServiceContainer, IServiceProvider, IContainerAccessor
-
public interface IContainerAdapter : IComponent, IContainer, IDisposable, IServiceContainer, IServiceProvider, IContainerAccessor
-
public interface IContainerAdapterSite : ISite, IServiceProvider
Castle.Windsor.Configuration
Castle.Windsor.Configuration.Interpreters
-
public abstract class AbstractInterpreter : IConfigurationInterpreter
- protected static readonly string BootstrapNodeName
- 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 AddChildContainerConfig(string name, IConfiguration childContainer, IConfigurationStore store)
- protected static void AddComponentConfig(string id, IConfiguration component, 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)
- public abstract void ProcessResource(IResource resource, IConfigurationStore store, IKernel kernel)
-
public class ConfigurationProcessingException : Exception
-
public class XmlInterpreter : AbstractInterpreter
Castle.Windsor.Configuration.Interpreters.XmlProcessor
Castle.Windsor.Configuration.Interpreters.XmlProcessor.ElementProcessors
Castle.Windsor.Diagnostics
-
public class AllComponentsDiagnostic : IAllComponentsDiagnostic, IDiagnostic<IHandler[]>
-
public class AllServicesDiagnostic : IAllServicesDiagnostic, IDiagnostic<ILookup<Type, IHandler>>
-
public class ComponentDebuggerExtension : IComponentDebuggerExtension
-
public class DefaultDiagnosticsSubSystem : AbstractSubSystem, IDiagnosticsHost, IContainerDebuggerExtensionHost, IEnumerable<IContainerDebuggerExtension>, IEnumerable
-
public class DependencyDuplicate
-
public enum DependencyDuplicationReason
-
public class DuplicatedDependenciesDiagnostic : IDuplicatedDependenciesDiagnostic, IDiagnostic<Pair<IHandler, DependencyDuplicate[]>[]>
-
public interface IAllComponentsDiagnostic : IDiagnostic<IHandler[]>
-
public interface IAllServicesDiagnostic : IDiagnostic<ILookup<Type, IHandler>>
-
public interface IComponentDebuggerExtension
-
public interface IContainerDebuggerExtension
-
public interface IContainerDebuggerExtensionHost : IEnumerable<IContainerDebuggerExtension>, IEnumerable
-
public interface IDiagnostic<T>
-
public interface IDiagnosticsHost
-
public interface IDiagnosticsInspector<TData, TContext>
- void Inspect(TData data, TContext context)
-
public interface IDiagnosticsSource<TResult>
-
public interface IDuplicatedDependenciesDiagnostic : IDiagnostic<Pair<IHandler, DependencyDuplicate[]>[]>
-
public interface IExposeDiagnostics<TData>
-
public interface IPerformanceMetricsFactory
-
public interface IPotentialLifestyleMismatchesDiagnostic : IDiagnostic<IHandler[][]>
-
public interface IPotentiallyMisconfiguredComponentsDiagnostic : IDiagnostic<IHandler[]>
-
public interface ITrackedComponentsDiagnostic : IDiagnostic<ILookup<IHandler, object>>
-
public interface ITrackedComponentsPerformanceCounter
-
public interface IUsingContainerAsServiceLocatorDiagnostic : IDiagnostic<IHandler[]>
-
public class NullPerformanceCounter : ITrackedComponentsPerformanceCounter
-
public class PerformanceMetricsFactory : IPerformanceMetricsFactory
-
public class PotentialLifestyleMismatchesDiagnostic : IPotentialLifestyleMismatchesDiagnostic, IDiagnostic<IHandler[][]>
-
public class PotentiallyMisconfiguredComponentsDiagnostic : IPotentiallyMisconfiguredComponentsDiagnostic, IDiagnostic<IHandler[]>
-
public class TrackedComponentsDiagnostic : ITrackedComponentsDiagnostic, IDiagnostic<ILookup<IHandler, object>>
-
public class TrackedComponentsPerformanceCounterWrapper : ITrackedComponentsPerformanceCounter, IDisposable
-
public class TrackedInstancesEventArgs : EventArgs
-
public class UsingContainerAsServiceLocatorDiagnostic : IUsingContainerAsServiceLocatorDiagnostic, IDiagnostic<IHandler[]>
Castle.Windsor.Diagnostics.DebuggerViews
Castle.Windsor.Diagnostics.Extensions
Castle.Windsor.Diagnostics.Helpers
Castle.Windsor.Diagnostics.Inspectors
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