Catel.IoC.CatelDependencyResolver.Resolve C# (CSharp) Method

Resolve() public method

Resolves the specified type with the specified tag.
The is null. The type is not found in any container.
public Resolve ( Type type, object tag = null ) : object
type System.Type The type.
tag object The tag.
return object
        public object Resolve(Type type, object tag = null)
        {
            Argument.IsNotNull("type", type);
            
            return _serviceLocator.ResolveType(type, tag);
        }