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
/// Get an instance of the requested type with the given name from the container.
///
/// of object to get from the container.
/// Name of the object to retrieve.
/// Any overrides for the resolve call.
/// The retrieved object.
public object Resolve(Type t, string name, params ResolverOverride[] resolverOverrides) => this.DoBuildUp(t, name, (IEnumerable) resolverOverrides);
In v5.11.9 I can only find a generic version, but I don't know the type before runtime, so that is not optimal to use for me.
Resolve(Type t, string name) | Returns an instance of the type registered with the container as the type t and with the specified name. Names are case sensitive.
What am I missing here?
If it is simply because the method is missing in UnityContainerExtensions, it is super easy to add, since the generic methods just calls a non generic implementation anyways.