Mercurial > pub > ImplabNet
comparison Implab.ServiceHost/Unity/AbstractMemberInjection.cs @ 279:8714471e8d78 v3
Container configuration cleanup, RC2
author | cin |
---|---|
date | Fri, 04 May 2018 18:12:42 +0300 |
parents | 963b17c275be |
children |
comparison
equal
deleted
inserted
replaced
278:6691aff01de1 | 279:8714471e8d78 |
---|---|
2 | 2 |
3 namespace Implab.ServiceHost.Unity { | 3 namespace Implab.ServiceHost.Unity { |
4 /// <summary> | 4 /// <summary> |
5 /// Base class for injections, each injection is applied to the type registration context. | 5 /// Base class for injections, each injection is applied to the type registration context. |
6 /// </summary> | 6 /// </summary> |
7 public abstract class AbstractMemberInjection { | 7 public abstract class AbstractMemberInjection : ITypeMemberInjection { |
8 internal abstract void Visit(TypeRegistrationBuilder context); | 8 public abstract void Visit(TypeRegistrationBuilder builder); |
9 } | 9 } |
10 } | 10 } |