##// END OF EJS Templates
bump version to 2.1
bump version to 2.1

File last commit:

r69:48763f3b5db8 default
r191:cc19dc78edb7 v2
Show More
IServiceLocator.cs
13 lines | 351 B | text/x-csharp | CSharpLexer
/ Implab / IServiceLocator.cs
cin
improved tracing...
r40 using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Implab {
public interface IServiceLocator: IServiceProvider {
T GetService<T>();
bool TryGetService<T>(out T service);
cin
service locator refactoring
r69 bool TryGetService (Type serviceType, out object service);
cin
improved tracing...
r40 }
}