##// END OF EJS Templates
Added IObservable to TraceRegistry
Added IObservable to TraceRegistry

File last commit:

r278:6691aff01de1 v3
r288:90cef6117ced v3
Show More
ITypeRegistration.cs
9 lines | 281 B | text/x-csharp | CSharpLexer
using System;
using System.Collections.Generic;
namespace Implab.ServiceHost.Unity {
public interface ITypeRegistration : IRegistration {
Type GetImplementationType(ContainerBuilder builder);
IEnumerable<ITypeMemberInjection> MemberInjections { get; }
}
}