##// END OF EJS Templates
Implab: added XmlDefaultSeializer (SerializersPool is now obsolete)...
Implab: added XmlDefaultSeializer (SerializersPool is now obsolete) Implab.ServiceHost: rewritten TypeReference (added support for nested types), stable API

File last commit:

r250:9f63dade3a40 v3
r278:6691aff01de1 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);
}
}