Mercurial > pub > ImplabNet
annotate Implab.ServiceHost/Unity/RegistrationBuilder.cs @ 276:b4e0f81c7425 v3
container configuration docs
| author | cin |
|---|---|
| date | Sat, 28 Apr 2018 00:11:38 +0300 |
| parents | 22629bf26121 |
| children | 963b17c275be |
| rev | line source |
|---|---|
| 274 | 1 using System; |
| 2 using System.Collections.Generic; | |
| 3 using System.ComponentModel; | |
| 4 using System.Linq; | |
| 5 using System.Xml.Serialization; | |
| 6 using Implab.Xml; | |
| 7 using Unity.Injection; | |
| 8 using Unity.Registration; | |
| 9 | |
| 10 namespace Implab.ServiceHost.Unity { | |
| 11 public abstract class RegistrationBuilder { | |
| 12 public Type RegistrationType { | |
| 13 get; | |
| 14 private set; | |
| 15 } | |
| 16 | |
| 17 protected RegistrationBuilder(Type registrationType) { | |
| 18 RegistrationType = registrationType; | |
| 19 } | |
| 20 } | |
| 21 } |
