You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -120,7 +123,7 @@ public TService Provide<TService>(TService instance, object serviceKey)
120
123
/// <summary>
121
124
/// Registers to the container and returns a substitute for a given concrete class given the explicit constructor parameters.
122
125
/// This is used for concrete classes where NSubstitutes won't be created by default by the container when using Resolve.
123
-
/// For advanced uses consider using directly <see cref="Substitute.For{TService}"/> and then calling <see cref="Provide{TService}"/> so that type is used on dependencies for other Resolved types.
126
+
/// For advanced uses consider using directly <see cref="Substitute.For{TService}"/> and then calling <see cref="Provide{TService}(TService)"/> so that type is used on dependencies for other Resolved types.
124
127
/// </summary>
125
128
/// <typeparam name="TService">The type to register and return a substitute for</typeparam>
@@ -134,7 +137,7 @@ public TService SubstituteFor<TService>(params object[] parameters) where TServi
134
137
/// <summary>
135
138
/// Registers to the container and returns a substitute for a given concrete class using autofac to resolve the constructor parameters.
136
139
/// This is used for concrete classes where NSubstitutes won't be created by default by the container when using Resolve.
137
-
/// For advanced uses consider using directly <see cref="Substitute.For{TService}"/> and then calling <see cref="Provide{TService}"/> so that type is used on dependencies for other Resolved types.
140
+
/// For advanced uses consider using directly <see cref="Substitute.For{TService}"/> and then calling <see cref="Provide{TService}(TService)"/> so that type is used on dependencies for other Resolved types.
138
141
/// </summary>
139
142
/// <typeparam name="TService">The type to register and return a substitute for</typeparam>
140
143
/// <param name="parameters">Any constructor parameters that Autofac can't resolve automatically</param>
0 commit comments