Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ENikS committed Mar 5, 2020
1 parent a234b65 commit e3cb4f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Abstracts/IUnityContainer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ public interface IUnityContainer : IDisposable
/// <seealso cref="FactoryLifetime"/>
/// <exception cref="InvalidOperationException">If <paramref name="factory"/> is <c>null</c> method throws</exception>
/// <returns>The <see cref="IUnityContainer"/> container.</returns>
IUnityContainer RegisterFactory(Type type, string? name, Func<IResolveContext, object?> factory, IFactoryLifetimeManager? lifetimeManager);
IUnityContainer RegisterFactory(Type type, string? name, Func<IResolveContext, object?> factory, IFactoryLifetimeManager? lifetimeManager, params InjectionMember[] injectionMembers);


/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion src/Abstracts/IUnityContainerAsync.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public interface IUnityContainerAsync : IDisposable
/// <param name="lifetimeManager">The <see cref="LifetimeManager"/> that controls the lifetime
/// of the returned instance.</param>
/// <returns>Returns <see cref="Task"/> indicating when registration is done</returns>
Task RegisterFactory(IEnumerable<Type>? interfaces, string? name, Func<IUnityContainer, Type, string?, object?> factory, IFactoryLifetimeManager? lifetimeManager);
Task RegisterFactory(IEnumerable<Type>? interfaces, string? name, Func<IUnityContainer, Type, string?, object?> factory, IFactoryLifetimeManager? lifetimeManager, params InjectionMember[] injectionMembers);


/// <summary>
Expand Down

0 comments on commit e3cb4f8

Please sign in to comment.