Mercurial > pub > ImplabNet
view Implab/Components/IServiceLocator.cs @ 280:f07be402ab02 v3
Added Trace<T>.Debug(...) method for debug messages
Added ContainerBuilde.LoadConfig(Uri) method
author | cin |
---|---|
date | Fri, 25 May 2018 19:15:26 +0300 |
parents | 9f63dade3a40 |
children |
line wrap: on
line source
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Implab.Components { public interface IServiceLocator: IServiceProvider { T GetService<T>(); bool TryGetService<T>(out T service); bool TryGetService (Type serviceType, out object service); } }