@@ -943,7 +943,7 @@ public RegisterOptions(TinyIoCContainer container, TypeRegistration registration
943
943
/// Make registration a singleton (single instance) if possible
944
944
/// </summary>
945
945
/// <returns>RegisterOptions</returns>
946
- /// <exception cref="TinyIoCInstantiationTypeException "></exception>
946
+ /// <exception cref="TinyIoCRegistrationException "></exception>
947
947
public RegisterOptions AsSingleton ( )
948
948
{
949
949
var currentFactory = _Container . GetCurrentFactory ( _Registration ) ;
@@ -958,7 +958,7 @@ public RegisterOptions AsSingleton()
958
958
/// Make registration multi-instance if possible
959
959
/// </summary>
960
960
/// <returns>RegisterOptions</returns>
961
- /// <exception cref="TinyIoCInstantiationTypeException "></exception>
961
+ /// <exception cref="TinyIoCRegistrationException "></exception>
962
962
public RegisterOptions AsMultiInstance ( )
963
963
{
964
964
var currentFactory = _Container . GetCurrentFactory ( _Registration ) ;
@@ -973,7 +973,7 @@ public RegisterOptions AsMultiInstance()
973
973
/// Make registration hold a weak reference if possible
974
974
/// </summary>
975
975
/// <returns>RegisterOptions</returns>
976
- /// <exception cref="TinyIoCInstantiationTypeException "></exception>
976
+ /// <exception cref="TinyIoCRegistrationException "></exception>
977
977
public RegisterOptions WithWeakReference ( )
978
978
{
979
979
var currentFactory = _Container . GetCurrentFactory ( _Registration ) ;
@@ -988,7 +988,7 @@ public RegisterOptions WithWeakReference()
988
988
/// Make registration hold a strong reference if possible
989
989
/// </summary>
990
990
/// <returns>RegisterOptions</returns>
991
- /// <exception cref="TinyIoCInstantiationTypeException "></exception>
991
+ /// <exception cref="TinyIoCRegistrationException "></exception>
992
992
public RegisterOptions WithStrongReference ( )
993
993
{
994
994
var currentFactory = _Container . GetCurrentFactory ( _Registration ) ;
@@ -1072,7 +1072,7 @@ public MultiRegisterOptions(IEnumerable<RegisterOptions> registerOptions)
1072
1072
/// Make registration a singleton (single instance) if possible
1073
1073
/// </summary>
1074
1074
/// <returns>RegisterOptions</returns>
1075
- /// <exception cref="TinyIoCInstantiationTypeException "></exception>
1075
+ /// <exception cref="TinyIoCRegistrationException "></exception>
1076
1076
public MultiRegisterOptions AsSingleton ( )
1077
1077
{
1078
1078
_RegisterOptions = ExecuteOnAllRegisterOptions ( ro => ro . AsSingleton ( ) ) ;
@@ -1083,7 +1083,7 @@ public MultiRegisterOptions AsSingleton()
1083
1083
/// Make registration multi-instance if possible
1084
1084
/// </summary>
1085
1085
/// <returns>MultiRegisterOptions</returns>
1086
- /// <exception cref="TinyIoCInstantiationTypeException "></exception>
1086
+ /// <exception cref="TinyIoCRegistrationException "></exception>
1087
1087
public MultiRegisterOptions AsMultiInstance ( )
1088
1088
{
1089
1089
_RegisterOptions = ExecuteOnAllRegisterOptions ( ro => ro . AsMultiInstance ( ) ) ;
@@ -1372,7 +1372,7 @@ public RegisterOptions Register(Type registerType, Func<TinyIoCContainer, NamedP
1372
1372
/// <summary>
1373
1373
/// Creates/replaces a container class registration with default options.
1374
1374
/// </summary>
1375
- /// <typeparam name="RegisterImplementation ">Type to register</typeparam>
1375
+ /// <typeparam name="RegisterType ">Type to register</typeparam>
1376
1376
/// <returns>RegisterOptions for fluent API</returns>
1377
1377
public RegisterOptions Register < RegisterType > ( )
1378
1378
where RegisterType : class
@@ -1383,7 +1383,7 @@ public RegisterOptions Register<RegisterType>()
1383
1383
/// <summary>
1384
1384
/// Creates/replaces a named container class registration with default options.
1385
1385
/// </summary>
1386
- /// <typeparam name="RegisterImplementation ">Type to register</typeparam>
1386
+ /// <typeparam name="RegisterType ">Type to register</typeparam>
1387
1387
/// <param name="name">Name of registration</param>
1388
1388
/// <returns>RegisterOptions for fluent API</returns>
1389
1389
public RegisterOptions Register < RegisterType > ( string name )
0 commit comments