- fix comments

pull/32/head
Simon Gockner 6 years ago
parent 97cbb46d2f
commit f171c81e33
  1. 2
      LightweightIocContainer/Interfaces/Registrations/IUnitTestCallbackRegistration.cs
  2. 4
      LightweightIocContainer/Registrations/UnitTestCallbackRegistration.cs

@ -5,7 +5,7 @@
namespace LightweightIocContainer.Interfaces.Registrations namespace LightweightIocContainer.Interfaces.Registrations
{ {
/// <summary> /// <summary>
/// A special <see cref="IDefaultRegistration{TInterface}"/> that allows to set an <see cref="ResolveCallback{T}"/> as a callback that is called on <see cref="IIocContainer.Resolve{T}()"/> /// A special <see cref="IRegistrationBase"/> that allows to set a <see cref="ResolveCallback{T}"/> as a callback that is called on <see cref="IIocContainer.Resolve{T}()"/>
/// </summary> /// </summary>
/// <typeparam name="TInterface"></typeparam> /// <typeparam name="TInterface"></typeparam>
public interface IUnitTestCallbackRegistration<out TInterface> : IRegistrationBase public interface IUnitTestCallbackRegistration<out TInterface> : IRegistrationBase

@ -9,13 +9,13 @@ using LightweightIocContainer.Interfaces.Registrations;
namespace LightweightIocContainer.Registrations namespace LightweightIocContainer.Registrations
{ {
/// <summary> /// <summary>
/// A special <see cref="IDefaultRegistration{TInterface}"/> that allows to set an <see cref="ResolveCallback{T}"/> as a callback that is called on <see cref="IIocContainer.Resolve{T}()"/> /// A special <see cref="IRegistrationBase"/> that allows to set a <see cref="ResolveCallback{T}"/> as a callback that is called on <see cref="IIocContainer.Resolve{T}()"/>
/// </summary> /// </summary>
/// <typeparam name="TInterface"></typeparam> /// <typeparam name="TInterface"></typeparam>
public class UnitTestCallbackRegistration<TInterface> : IUnitTestCallbackRegistration<TInterface> public class UnitTestCallbackRegistration<TInterface> : IUnitTestCallbackRegistration<TInterface>
{ {
/// <summary> /// <summary>
/// A special <see cref="IDefaultRegistration{TInterface}"/> that allows to set an <see cref="ResolveCallback{T}"/> as a callback that is called on <see cref="IIocContainer.Resolve{T}()"/> /// A special <see cref="IRegistrationBase"/> that allows to set a <see cref="ResolveCallback{T}"/> as a callback that is called on <see cref="IIocContainer.Resolve{T}()"/>
/// </summary> /// </summary>
/// <param name="interfaceType">The <see cref="Type"/> of the interface</param> /// <param name="interfaceType">The <see cref="Type"/> of the interface</param>
/// <param name="unitTestResolveCallback">The <see cref="ResolveCallback{T}"/> that is set as a callback</param> /// <param name="unitTestResolveCallback">The <see cref="ResolveCallback{T}"/> that is set as a callback</param>

Loading…
Cancel
Save