mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-08-24 05:19:53 +08:00
Fixing DynamicProxy unit tests by reverting autofac upgrade
This commit is contained in:
parent
0fbc2e47bc
commit
14674a9908
Binary file not shown.
BIN
lib/autofac/Autofac.Configuration.pdb
Normal file
BIN
lib/autofac/Autofac.Configuration.pdb
Normal file
Binary file not shown.
@ -616,11 +616,6 @@
|
||||
Looks up a localized string similar to Unable to convert object of type '{0}' to type '{1}'..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Autofac.Configuration.ConfigurationSettingsReaderResources.TypeConverterAttributeTypeNotConverter">
|
||||
<summary>
|
||||
Looks up a localized string similar to The type '{0}' specified in the TypeConverterAttribute is not a TypeConverter..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Autofac.Configuration.ConfigurationSettingsReaderResources.TypeNotFound">
|
||||
<summary>
|
||||
Looks up a localized string similar to The type '{0}' could not be found. It may require assembly qualification, e.g. "MyType, MyAssembly"..
|
||||
@ -668,7 +663,7 @@
|
||||
</member>
|
||||
<member name="T:Autofac.Configuration.Elements.ListElementCollection.ListElementTypeConverter">
|
||||
<summary>
|
||||
Helps convert the configuration element into an actual generic list
|
||||
Helps convert the configuration element into an actuall generic list
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Autofac.Configuration.Util.Enforce">
|
||||
@ -1119,7 +1114,7 @@
|
||||
Some handy type conversion routines.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Autofac.Configuration.Util.TypeManipulation.ChangeToCompatibleType(System.Object,System.Type,System.Reflection.ICustomAttributeProvider)">
|
||||
<member name="M:Autofac.Configuration.Util.TypeManipulation.ChangeToCompatibleType(System.Object,System.Type)">
|
||||
<summary>
|
||||
Does its best to convert whatever the value is into the destination
|
||||
type. Null in yields null out for value types and the default(T)
|
||||
@ -1127,7 +1122,6 @@
|
||||
</summary>
|
||||
<param name="value">The value.</param>
|
||||
<param name="destinationType">Type of the destination.</param>
|
||||
<param name="memberInfo">Reflected property or member info for the destination, if available, for retrieving custom type converter information.</param>
|
||||
<returns>An object of the destination type.</returns>
|
||||
</member>
|
||||
<member name="T:Autofac.Configuration.Elements.ListItemElement">
|
||||
|
Binary file not shown.
BIN
lib/autofac/Autofac.Integration.Web.pdb
Normal file
BIN
lib/autofac/Autofac.Integration.Web.pdb
Normal file
Binary file not shown.
@ -442,7 +442,7 @@
|
||||
Extends registration syntax for common web scenarios.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Autofac.Integration.Web.RegistrationExtensions.InstancePerHttpRequest``3(Autofac.Builder.IRegistrationBuilder{``0,``1,``2},System.Object[])">
|
||||
<member name="M:Autofac.Integration.Web.RegistrationExtensions.InstancePerHttpRequest``3(Autofac.Builder.IRegistrationBuilder{``0,``1,``2})">
|
||||
<summary>
|
||||
Share one instance of the component within the context of a single
|
||||
HTTP request.
|
||||
@ -451,7 +451,6 @@
|
||||
<typeparam name="TStyle">Registration style.</typeparam>
|
||||
<typeparam name="TActivatorData">Activator data type.</typeparam>
|
||||
<param name="registration">The registration to configure.</param>
|
||||
<param name="lifetimeScopeTags">Additional tags applied for matching lifetime scopes.</param>
|
||||
<returns>A registration builder allowing further configuration of the component.</returns>
|
||||
</member>
|
||||
<member name="M:Autofac.Integration.Web.RegistrationExtensions.CacheInSession``3(Autofac.Builder.IRegistrationBuilder{``0,``1,``2})">
|
||||
|
@ -158,57 +158,6 @@
|
||||
Looks up a localized string similar to {0} ---> {1} (See inner exception for details.).
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Autofac.Core.Registration.IModuleRegistrar">
|
||||
<summary>
|
||||
Interface providing fluent syntax for chaining module registrations.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Autofac.Core.Registration.IModuleRegistrar.RegisterModule(Autofac.Core.IModule)">
|
||||
<summary>
|
||||
Add a module to the container.
|
||||
</summary>
|
||||
<param name="module">The module to add.</param>
|
||||
<returns>
|
||||
The <see cref="T:Autofac.Core.Registration.IModuleRegistrar"/> to allow
|
||||
additional chained module registrations.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="T:Autofac.Core.Registration.ModuleRegistrar">
|
||||
<summary>
|
||||
Basic implementation of the <see cref="T:Autofac.Core.Registration.IModuleRegistrar"/>
|
||||
interface allowing registration of modules into a <see cref="T:Autofac.ContainerBuilder"/>
|
||||
in a fluent format.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Autofac.Core.Registration.ModuleRegistrar._builder">
|
||||
<summary>
|
||||
The <see cref="T:Autofac.ContainerBuilder"/> into which registrations will be made.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Autofac.Core.Registration.ModuleRegistrar.#ctor(Autofac.ContainerBuilder)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Autofac.Core.Registration.ModuleRegistrar"/> class.
|
||||
</summary>
|
||||
<param name="builder">
|
||||
The <see cref="T:Autofac.ContainerBuilder"/> into which registrations will be made.
|
||||
</param>
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
Thrown if <paramref name="builder"/> is <see langword="null"/>.
|
||||
</exception>
|
||||
</member>
|
||||
<member name="M:Autofac.Core.Registration.ModuleRegistrar.RegisterModule(Autofac.Core.IModule)">
|
||||
<summary>
|
||||
Add a module to the container.
|
||||
</summary>
|
||||
<param name="module">The module to add.</param>
|
||||
<returns>
|
||||
The <see cref="T:Autofac.Core.Registration.IModuleRegistrar"/> to allow
|
||||
additional chained module registrations.
|
||||
</returns>
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
Thrown if <paramref name="module"/> is <see langword="null"/>.
|
||||
</exception>
|
||||
</member>
|
||||
<member name="T:Autofac.Features.LazyDependencies.LazyWithMetadataRegistrationSource">
|
||||
<summary>
|
||||
Support the <c>System.Lazy<T, TMetadata></c>
|
||||
@ -362,156 +311,6 @@
|
||||
<param name="targetType">Type to search for constructors.</param>
|
||||
<returns>Suitable constructors.</returns>
|
||||
</member>
|
||||
<member name="T:Autofac.Features.ResolveAnything.AnyConcreteTypeNotAlreadyRegisteredSourceExtensions">
|
||||
<summary>
|
||||
Extension methods for configuring the <see cref="T:Autofac.Features.ResolveAnything.AnyConcreteTypeNotAlreadyRegisteredSource"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Autofac.Features.ResolveAnything.AnyConcreteTypeNotAlreadyRegisteredSourceExtensions.WithRegistrationsAs(Autofac.Features.ResolveAnything.AnyConcreteTypeNotAlreadyRegisteredSource,System.Action{Autofac.Builder.IRegistrationBuilder{System.Object,Autofac.Builder.ConcreteReflectionActivatorData,Autofac.Builder.SingleRegistrationStyle}})">
|
||||
<summary>
|
||||
Fluent method for setting the registration configuration on <see cref="T:Autofac.Features.ResolveAnything.AnyConcreteTypeNotAlreadyRegisteredSource"/>.
|
||||
</summary>
|
||||
<param name="source">The registration source to configure.</param>
|
||||
<param name="configurationAction">A configuration action that will run on any registration provided by the source.</param>
|
||||
<returns>
|
||||
The <paramref name="source"/> with the registration configuration set.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="T:Autofac.ModuleRegistrationExtensions">
|
||||
<summary>
|
||||
Extension methods for registering <see cref="T:Autofac.Core.IModule"/> instances with a container.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Autofac.ModuleRegistrationExtensions.RegisterAssemblyModules(Autofac.ContainerBuilder,System.Reflection.Assembly[])">
|
||||
<summary>
|
||||
Registers modules found in an assembly.
|
||||
</summary>
|
||||
<param name="builder">The builder to register the modules with.</param>
|
||||
<param name="assemblies">The assemblies from which to register modules.</param>
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
Thrown if <paramref name="builder"/> is <see langword="null"/>.
|
||||
</exception>
|
||||
<returns>
|
||||
The <see cref="T:Autofac.Core.Registration.IModuleRegistrar"/> to allow
|
||||
additional chained module registrations.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Autofac.ModuleRegistrationExtensions.RegisterAssemblyModules(Autofac.Core.Registration.IModuleRegistrar,System.Reflection.Assembly[])">
|
||||
<summary>
|
||||
Registers modules found in an assembly.
|
||||
</summary>
|
||||
<param name="registrar">The module registrar that will make the registrations into the container.</param>
|
||||
<param name="assemblies">The assemblies from which to register modules.</param>
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
Thrown if <paramref name="registrar"/> is <see langword="null"/>.
|
||||
</exception>
|
||||
<returns>
|
||||
The <see cref="T:Autofac.Core.Registration.IModuleRegistrar"/> to allow
|
||||
additional chained module registrations.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Autofac.ModuleRegistrationExtensions.RegisterAssemblyModules``1(Autofac.ContainerBuilder,System.Reflection.Assembly[])">
|
||||
<summary>
|
||||
Registers modules found in an assembly.
|
||||
</summary>
|
||||
<param name="builder">The builder to register the modules with.</param>
|
||||
<param name="assemblies">The assemblies from which to register modules.</param>
|
||||
<typeparam name="TModule">The type of the module to add.</typeparam>
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
Thrown if <paramref name="builder"/> is <see langword="null"/>.
|
||||
</exception>
|
||||
<returns>
|
||||
The <see cref="T:Autofac.Core.Registration.IModuleRegistrar"/> to allow
|
||||
additional chained module registrations.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Autofac.ModuleRegistrationExtensions.RegisterAssemblyModules``1(Autofac.Core.Registration.IModuleRegistrar,System.Reflection.Assembly[])">
|
||||
<summary>
|
||||
Registers modules found in an assembly.
|
||||
</summary>
|
||||
<param name="registrar">The module registrar that will make the registrations into the container.</param>
|
||||
<param name="assemblies">The assemblies from which to register modules.</param>
|
||||
<typeparam name="TModule">The type of the module to add.</typeparam>
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
Thrown if <paramref name="registrar"/> is <see langword="null"/>.
|
||||
</exception>
|
||||
<returns>
|
||||
The <see cref="T:Autofac.Core.Registration.IModuleRegistrar"/> to allow
|
||||
additional chained module registrations.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Autofac.ModuleRegistrationExtensions.RegisterAssemblyModules(Autofac.ContainerBuilder,System.Type,System.Reflection.Assembly[])">
|
||||
<summary>
|
||||
Registers modules found in an assembly.
|
||||
</summary>
|
||||
<param name="builder">The builder to register the modules with.</param>
|
||||
<param name="moduleType">The <see cref="T:System.Type"/> of the module to add.</param>
|
||||
<param name="assemblies">The assemblies from which to register modules.</param>
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
Thrown if <paramref name="builder"/> or <paramref name="moduleType"/> is <see langword="null"/>.
|
||||
</exception>
|
||||
<returns>
|
||||
The <see cref="T:Autofac.Core.Registration.IModuleRegistrar"/> to allow
|
||||
additional chained module registrations.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Autofac.ModuleRegistrationExtensions.RegisterAssemblyModules(Autofac.Core.Registration.IModuleRegistrar,System.Type,System.Reflection.Assembly[])">
|
||||
<summary>
|
||||
Registers modules found in an assembly.
|
||||
</summary>
|
||||
<param name="registrar">The module registrar that will make the registrations into the container.</param>
|
||||
<param name="moduleType">The <see cref="T:System.Type"/> of the module to add.</param>
|
||||
<param name="assemblies">The assemblies from which to register modules.</param>
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
Thrown if <paramref name="registrar"/> or <paramref name="moduleType"/> is <see langword="null"/>.
|
||||
</exception>
|
||||
<returns>
|
||||
The <see cref="T:Autofac.Core.Registration.IModuleRegistrar"/> to allow
|
||||
additional chained module registrations.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Autofac.ModuleRegistrationExtensions.RegisterModule``1(Autofac.ContainerBuilder)">
|
||||
<summary>
|
||||
Add a module to the container.
|
||||
</summary>
|
||||
<param name="builder">The builder to register the module with.</param>
|
||||
<typeparam name="TModule">The module to add.</typeparam>
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
Thrown if <paramref name="builder"/> is <see langword="null"/>.
|
||||
</exception>
|
||||
<returns>
|
||||
The <see cref="T:Autofac.Core.Registration.IModuleRegistrar"/> to allow
|
||||
additional chained module registrations.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Autofac.ModuleRegistrationExtensions.RegisterModule``1(Autofac.Core.Registration.IModuleRegistrar)">
|
||||
<summary>
|
||||
Add a module to the container.
|
||||
</summary>
|
||||
<param name="registrar">The module registrar that will make the registration into the container.</param>
|
||||
<typeparam name="TModule">The module to add.</typeparam>
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
Thrown if <paramref name="registrar"/> is <see langword="null"/>.
|
||||
</exception>
|
||||
<returns>
|
||||
The <see cref="T:Autofac.Core.Registration.IModuleRegistrar"/> to allow
|
||||
additional chained module registrations.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Autofac.ModuleRegistrationExtensions.RegisterModule(Autofac.ContainerBuilder,Autofac.Core.IModule)">
|
||||
<summary>
|
||||
Add a module to the container.
|
||||
</summary>
|
||||
<param name="builder">The builder to register the module with.</param>
|
||||
<param name="module">The module to add.</param>
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
Thrown if <paramref name="builder"/> or <paramref name="module"/> is <see langword="null"/>.
|
||||
</exception>
|
||||
<returns>
|
||||
The <see cref="T:Autofac.Core.Registration.IModuleRegistrar"/> to allow
|
||||
additional chained module registrations.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="T:Autofac.ModuleResources">
|
||||
<summary>
|
||||
A strongly-typed resource class, for looking up localized strings, etc.
|
||||
@ -2703,15 +2502,6 @@
|
||||
of other components (I.e. like Meta, Func or Owned.)
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Autofac.Features.ResolveAnything.AnyConcreteTypeNotAlreadyRegisteredSource.RegistrationConfiguration">
|
||||
<summary>
|
||||
Gets or sets an expression used to configure generated registrations.
|
||||
</summary>
|
||||
<value>
|
||||
A <see cref="T:System.Action`1"/> that can be used to modify the behavior
|
||||
of registrations that are generated by this source.
|
||||
</value>
|
||||
</member>
|
||||
<member name="T:Autofac.Features.ResolveAnything.AnyConcreteTypeNotAlreadyRegisteredSourceResources">
|
||||
<summary>
|
||||
A strongly-typed resource class, for looking up localized strings, etc.
|
||||
@ -4304,35 +4094,6 @@
|
||||
</summary>
|
||||
<value></value>
|
||||
</member>
|
||||
<member name="T:Autofac.Features.Collections.CollectionRegistrationSource">
|
||||
<summary>
|
||||
Registration source providing implicit collection/list/enumerable support.
|
||||
</summary>
|
||||
<remarks>
|
||||
<para>
|
||||
This registration source provides enumerable support to allow resolving
|
||||
the set of all registered services of a given type.
|
||||
</para>
|
||||
<para>
|
||||
What may not be immediately apparent is that it also means any time there
|
||||
are no items of a particular type registered, it will always return an
|
||||
empty set rather than <see langword="null" /> or throwing an exception.
|
||||
This is by design.
|
||||
</para>
|
||||
<para>
|
||||
Consider the [possibly majority] use case where you're resolving a set
|
||||
of message handlers or event handlers from the container. If there aren't
|
||||
any handlers, you want an empty set - not <see langword="null" /> or
|
||||
an exception. It's valid to have no handlers registered.
|
||||
</para>
|
||||
<para>
|
||||
This implicit support means other areas (like MVC support or manual
|
||||
property injection) must take care to only request enumerable values they
|
||||
expect to get something back for. In other words, "Don't ask the container
|
||||
for something you don't expect to resolve."
|
||||
</para>
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="M:Autofac.Features.Collections.CollectionRegistrationSource.RegistrationsFor(Autofac.Core.Service,System.Func{Autofac.Core.Service,System.Collections.Generic.IEnumerable{Autofac.Core.IComponentRegistration}})">
|
||||
<summary>
|
||||
Retrieve registrations for an unregistered service, to be used
|
||||
@ -4857,6 +4618,43 @@
|
||||
Adds registration syntax to the <see cref="T:Autofac.ContainerBuilder"/> type.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Autofac.RegistrationExtensions.RegisterModule(Autofac.ContainerBuilder,Autofac.Core.IModule)">
|
||||
<summary>
|
||||
Add a module to the container.
|
||||
</summary>
|
||||
<param name="builder">The builder to register the module with.</param>
|
||||
<param name="module">The module to add.</param>
|
||||
</member>
|
||||
<member name="M:Autofac.RegistrationExtensions.RegisterModule``1(Autofac.ContainerBuilder)">
|
||||
<summary>
|
||||
Add a module to the container.
|
||||
</summary>
|
||||
<param name="builder">The builder to register the module with.</param>
|
||||
<typeparam name="TModule">The module to add.</typeparam>
|
||||
</member>
|
||||
<member name="M:Autofac.RegistrationExtensions.RegisterAssemblyModules(Autofac.ContainerBuilder,System.Reflection.Assembly[])">
|
||||
<summary>
|
||||
Registers modules found in an assembly.
|
||||
</summary>
|
||||
<param name="builder">Container builder.</param>
|
||||
<param name="assemblies">The assemblies from which to register modules.</param>
|
||||
</member>
|
||||
<member name="M:Autofac.RegistrationExtensions.RegisterAssemblyModules``1(Autofac.ContainerBuilder,System.Reflection.Assembly[])">
|
||||
<summary>
|
||||
Registers modules found in an assembly.
|
||||
</summary>
|
||||
<param name="builder">Container builder.</param>
|
||||
<param name="assemblies">The assemblies from which to register modules.</param>
|
||||
<typeparam name="TModule">The type of the module to add.</typeparam>
|
||||
</member>
|
||||
<member name="M:Autofac.RegistrationExtensions.RegisterAssemblyModules(Autofac.ContainerBuilder,System.Type,System.Reflection.Assembly[])">
|
||||
<summary>
|
||||
Registers modules found in an assembly.
|
||||
</summary>
|
||||
<param name="builder">Container builder.</param>
|
||||
<param name="moduleType">The <see cref="T:System.Type"/> of the module to add.</param>
|
||||
<param name="assemblies">The assemblies from which to register modules.</param>
|
||||
</member>
|
||||
<member name="M:Autofac.RegistrationExtensions.RegisterComponent(Autofac.ContainerBuilder,Autofac.Core.IComponentRegistration)">
|
||||
<summary>
|
||||
Add a component to the container.
|
||||
@ -5650,18 +5448,6 @@
|
||||
</remarks>
|
||||
<param name="container">An existing container to make the registrations in.</param>
|
||||
</member>
|
||||
<member name="M:Autofac.ContainerBuilder.Update(Autofac.IContainer,Autofac.Builder.ContainerBuildOptions)">
|
||||
<summary>
|
||||
Configure an existing container with the component registrations
|
||||
that have been made and allows additional build options to be specified.
|
||||
</summary>
|
||||
<remarks>
|
||||
Update can only be called once per <see cref="T:Autofac.ContainerBuilder"/>
|
||||
- this prevents ownership issues for provided instances.
|
||||
</remarks>
|
||||
<param name="container">An existing container to make the registrations in.</param>
|
||||
<param name="options">Options that influence the way the container is updated.</param>
|
||||
</member>
|
||||
<member name="M:Autofac.ContainerBuilder.Update(Autofac.Core.IComponentRegistry)">
|
||||
<summary>
|
||||
Configure an existing registry with the component registrations
|
||||
@ -6022,47 +5808,6 @@
|
||||
<exception cref="T:Autofac.Core.Registration.ComponentNotRegisteredException"/>
|
||||
<exception cref="T:Autofac.Core.DependencyResolutionException"/>
|
||||
</member>
|
||||
<member name="M:Autofac.ResolutionExtensions.ResolveKeyed(Autofac.IComponentContext,System.Object,System.Type)">
|
||||
<summary>
|
||||
Retrieve a service from the context.
|
||||
</summary>
|
||||
<param name="context">The context from which to resolve the service.</param>
|
||||
<param name="serviceKey">Key of the service.</param>
|
||||
<param name="serviceType">Type of the service.</param>
|
||||
<returns>
|
||||
The component instance that provides the service.
|
||||
</returns>
|
||||
<exception cref="T:Autofac.Core.Registration.ComponentNotRegisteredException"/>
|
||||
<exception cref="T:Autofac.Core.DependencyResolutionException"/>
|
||||
</member>
|
||||
<member name="M:Autofac.ResolutionExtensions.ResolveKeyed(Autofac.IComponentContext,System.Object,System.Type,System.Collections.Generic.IEnumerable{Autofac.Core.Parameter})">
|
||||
<summary>
|
||||
Retrieve a service from the context.
|
||||
</summary>
|
||||
<param name="context">The context from which to resolve the service.</param>
|
||||
<param name="serviceKey">Key of the service.</param>
|
||||
<param name="serviceType">Type of the service.</param>
|
||||
<param name="parameters">The parameters.</param>
|
||||
<returns>
|
||||
The component instance that provides the service.
|
||||
</returns>
|
||||
<exception cref="T:Autofac.Core.Registration.ComponentNotRegisteredException"/>
|
||||
<exception cref="T:Autofac.Core.DependencyResolutionException"/>
|
||||
</member>
|
||||
<member name="M:Autofac.ResolutionExtensions.ResolveKeyed(Autofac.IComponentContext,System.Object,System.Type,Autofac.Core.Parameter[])">
|
||||
<summary>
|
||||
Retrieve a service from the context.
|
||||
</summary>
|
||||
<param name="context">The context from which to resolve the service.</param>
|
||||
<param name="serviceKey">Key of the service.</param>
|
||||
<param name="serviceType">Type of the service.</param>
|
||||
<param name="parameters">The parameters.</param>
|
||||
<returns>
|
||||
The component instance that provides the service.
|
||||
</returns>
|
||||
<exception cref="T:Autofac.Core.Registration.ComponentNotRegisteredException"/>
|
||||
<exception cref="T:Autofac.Core.DependencyResolutionException"/>
|
||||
</member>
|
||||
<member name="M:Autofac.ResolutionExtensions.ResolveService(Autofac.IComponentContext,Autofac.Core.Service)">
|
||||
<summary>
|
||||
Retrieve a service from the context.
|
||||
@ -6859,11 +6604,6 @@
|
||||
resource lookups using this strongly typed resource class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Autofac.Features.GeneratedFactories.GeneratedFactoryRegistrationSourceResources.DuplicateTypesInTypeMappedFuncParameterList">
|
||||
<summary>
|
||||
Looks up a localized string similar to Unable to generate a function to return type '{0}' with input parameter types [{1}]. The input parameter type list has duplicate types. Try registering a custom delegate type instead of using a generic Func relationship..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Autofac.Features.GeneratedFactories.GeneratedFactoryRegistrationSourceResources.GeneratedFactoryRegistrationSourceDescription">
|
||||
<summary>
|
||||
Looks up a localized string similar to Delegate Support (Func<T>and Custom Delegates).
|
||||
|
Binary file not shown.
BIN
lib/autofac/Autofac.pdb
Normal file
BIN
lib/autofac/Autofac.pdb
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user