##// END OF EJS Templates
Working on Unity xml configuration
Working on Unity xml configuration

File last commit:

r250:9f63dade3a40 v3
r267:6b3e5c48131b v3
Show More
IServiceLocator.cs
13 lines | 362 B | text/x-csharp | CSharpLexer
cin
Working on runnable component
r250 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);
}
}