Skip to content

Commit 563a2dc

Browse files
committed
XML comments cleanup: Reduced fully qualified type named to their simple type names. This was needed long time ago when compiling (can't even remember why, perhaps it was needed for Silverlight or something).
1 parent 5e99c72 commit 563a2dc

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/SimpleInjector/Container.Registration.Batch.cs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ public void RegisterCollection(Type serviceType, IEnumerable<Assembly> assemblie
352352
/// <see cref="ContainerCollectionRegistrator.Register(Type, Assembly[])">Container.Collections.Register</see>.
353353
/// The <b>Collections.Register</b> overloads that take a collection of <see cref="Assembly"/>
354354
/// objects use this method internally to get the list of types that need to be registered. Instead of
355-
/// calling such overload, you can call an overload that takes a list of <see cref="System.Type"/> objects
355+
/// calling such overload, you can call an overload that takes a list of <see cref="Type"/> objects
356356
/// and pass in a filtered result from this <b>GetTypesToRegister</b> method.
357357
/// <code lang="cs"><![CDATA[
358358
/// var container = new Container();
@@ -424,11 +424,11 @@ public IEnumerable<Type> GetTypesToRegister<TService>(params Assembly[] assembli
424424
/// </summary>
425425
/// <remarks>
426426
/// Use this method when you need influence the types that are registered using
427-
/// <see cref="Register(System.Type, IEnumerable{System.Reflection.Assembly})">Register</see> or
427+
/// <see cref="Register(Type, IEnumerable{Assembly})">Register</see> or
428428
/// <see cref="ContainerCollectionRegistrator.Register(Type, Assembly[])">Collections.Register</see>.
429429
/// The <b>Register</b> overloads that take a collection of <see cref="Assembly"/>
430430
/// objects use this method internally to get the list of types that need to be registered. Instead of
431-
/// calling such overload, you can call an overload that takes a list of <see cref="System.Type"/> objects
431+
/// calling such overload, you can call an overload that takes a list of <see cref="Type"/> objects
432432
/// and pass in a filtered result from this <b>GetTypesToRegister</b> method.
433433
/// <code lang="cs"><![CDATA[
434434
/// var container = new Container();
@@ -442,7 +442,7 @@ public IEnumerable<Type> GetTypesToRegister<TService>(params Assembly[] assembli
442442
/// This example calls the <b>GetTypesToRegister</b> method to request a list of concrete implementations
443443
/// of the <b>ICommandHandler&lt;T&gt;</b> interface from the assembly of that interface. After that
444444
/// all internal types are filtered out. This list is supplied to the
445-
/// <see cref="Container.Register(System.Type,IEnumerable{System.Type})">Register(Type, IEnumerable&lt;Type&gt;)</see>
445+
/// <see cref="Container.Register(Type,IEnumerable{Type})">Register(Type, IEnumerable&lt;Type&gt;)</see>
446446
/// overload to finish the registration.
447447
/// </remarks>
448448
/// <param name="serviceType">The base type or interface to find derived types for. This can be both
@@ -463,11 +463,11 @@ public IEnumerable<Type> GetTypesToRegister(Type serviceType, params Assembly[]
463463
/// </summary>
464464
/// <remarks>
465465
/// Use this method when you need influence the types that are registered using
466-
/// <see cref="Register(System.Type, IEnumerable{System.Reflection.Assembly})">Register</see> or
466+
/// <see cref="Register(Type, IEnumerable{Assembly})">Register</see> or
467467
/// <see cref="ContainerCollectionRegistrator.Register(Type, Assembly[])">Collections.Register</see>.
468468
/// The <b>Register</b> overloads that take a collection of <see cref="Assembly"/>
469469
/// objects use this method internally to get the list of types that need to be registered. Instead of
470-
/// calling such overload, you can call an overload that takes a list of <see cref="System.Type"/> objects
470+
/// calling such overload, you can call an overload that takes a list of <see cref="Type"/> objects
471471
/// and pass in a filtered result from this <b>GetTypesToRegister</b> method.
472472
/// <code lang="cs"><![CDATA[
473473
/// var container = new Container();
@@ -481,7 +481,7 @@ public IEnumerable<Type> GetTypesToRegister(Type serviceType, params Assembly[]
481481
/// This example calls the <b>GetTypesToRegister</b> method to request a list of concrete implementations
482482
/// of the <b>ICommandHandler&lt;T&gt;</b> interface from the assembly of that interface. After that
483483
/// all internal types are filtered out. This list is supplied to the
484-
/// <see cref="Container.Register(System.Type,IEnumerable{System.Type})">Register(Type, IEnumerable&lt;Type&gt;)</see>
484+
/// <see cref="Container.Register(Type,IEnumerable{Type})">Register(Type, IEnumerable&lt;Type&gt;)</see>
485485
/// overload to finish the registration.
486486
/// </remarks>
487487
/// <param name="serviceType">The base type or interface to find derived types for. This can be both
@@ -543,10 +543,10 @@ public IEnumerable<Type> GetTypesToRegister<TService>(
543543
/// </summary>
544544
/// <remarks>
545545
/// Use this method when you need influence the types that are registered using
546-
/// <see cref="Register(System.Type, IEnumerable{System.Reflection.Assembly})">Register</see>.
546+
/// <see cref="Register(Type, IEnumerable{Assembly})">Register</see>.
547547
/// The <b>Register</b> overloads that take a collection of <see cref="Assembly"/>
548548
/// objects use this method internally to get the list of types that need to be registered. Instead of
549-
/// calling such overload, you can call an overload that takes a list of <see cref="System.Type"/> objects
549+
/// calling such overload, you can call an overload that takes a list of <see cref="Type"/> objects
550550
/// and pass in a filtered result from this <b>GetTypesToRegister</b> method.
551551
/// <code lang="cs"><![CDATA[
552552
/// var container = new Container();
@@ -561,7 +561,7 @@ public IEnumerable<Type> GetTypesToRegister<TService>(
561561
/// This example calls the <b>GetTypesToRegister</b> method to request a list of concrete implementations
562562
/// of the <b>ICommandHandler&lt;T&gt;</b> interface from the assembly of that interface. After that
563563
/// all internal types are filtered out. This list is supplied to the
564-
/// <see cref="Container.Register(System.Type,IEnumerable{System.Type})">Register(Type, IEnumerable&lt;Type&gt;)</see>
564+
/// <see cref="Container.Register(Type,IEnumerable{Type})">Register(Type, IEnumerable&lt;Type&gt;)</see>
565565
/// overload to finish the registration.
566566
/// </remarks>
567567
/// <param name="serviceType">The base type or interface to find derived types for. This can be both

0 commit comments

Comments
 (0)