annotate Implab.ServiceHost/Unity/AbstractInjectionElement.cs @ 274:22629bf26121
v3
Unity xml configuration, alpha2
author |
cin |
date |
Fri, 27 Apr 2018 04:47:52 +0300 |
parents |
79110a16cab7 |
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 } |