Mercurial > pub > ImplabNet
annotate Implab.ServiceHost/Unity/AbstractInjectionElement.cs @ 275:6fefd5811b9b v3
refactoring
| author | cin |
|---|---|
| date | Fri, 27 Apr 2018 16:57:30 +0300 |
| parents | 22629bf26121 |
| 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> | |
| 272 | 7 public abstract class AbstractInjectionElement { |
| 274 | 8 internal abstract void Visit(TypeRegistrationBuilder context); |
| 270 | 9 } |
| 10 } |
