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
@@ -45,6 +59,13 @@ public override IUnityContainer Populate(IUnityContainer container)
45
59
returncontainer;
46
60
}
47
61
62
+
/// <summary>
63
+
/// Create an instance for <paramref name="objectType"/>.
64
+
/// </summary>
65
+
/// <param name="objectType"><see cref="Type"/> used to create an instance.</param>
66
+
/// <typeparam name="T"><paramref name="objectType"/> must be type-equal to, inherit or implement <typeparamref name="T"/>.</typeparam>
67
+
/// <returns>New instance of <paramref name="objectType"/> as <typeparamref name="T"/>.</returns>
68
+
/// <exception cref="InvalidOperationException">Cannot create an instance of <paramref name="objectType" />. Whether <paramref name="objectType"/> is not type-equal, does not inherit or implement <typeparamref name="T"/> or has no default constructor.</exception>
0 commit comments