Mercurial > pub > ImplabNet
view Implab/Components/IServiceLocator.cs @ 272:9d1cca834b05 v3
preview version of Unity xml configuration
author | cin |
---|---|
date | Thu, 26 Apr 2018 03:14:54 +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); } }