annotate 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 |
|
rev |
line source |
272
|
1 using System;
|
|
2
|
274
|
3 namespace Implab.ServiceHost.Unity {
|
|
4 /// <summary>
|
|
5 /// Base class for injections, each injection is applied to the type registration context.
|
|
6 /// </summary>
|
279
|
7 public abstract class AbstractMemberInjection : ITypeMemberInjection {
|
|
8 public abstract void Visit(TypeRegistrationBuilder builder);
|
270
|
9 }
|
|
10 } |