annotate Implab.ServiceHost/Unity/SingletonLifetimeElement.cs @ 277:963b17c275be v3

Refactoring Added <array> element to injection parameters Working on registrations of factories
author cin
date Sat, 28 Apr 2018 18:48:09 +0300
parents Implab.ServiceHost/Unity/SimgletonLifetimeElement.cs@22629bf26121
children 8714471e8d78
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
269
ff581cff7003 Working on Unity container xml configuration
cin
parents:
diff changeset
1 namespace Implab.ServiceHost.Unity
ff581cff7003 Working on Unity container xml configuration
cin
parents:
diff changeset
2 {
277
963b17c275be Refactoring
cin
parents: 274
diff changeset
3 public class SingletonLifetimeElement : LifetimeElement {
963b17c275be Refactoring
cin
parents: 274
diff changeset
4 public override void Visit(RegistrationBuilder builder) {
963b17c275be Refactoring
cin
parents: 274
diff changeset
5 builder.Visit(this);
269
ff581cff7003 Working on Unity container xml configuration
cin
parents:
diff changeset
6 }
ff581cff7003 Working on Unity container xml configuration
cin
parents:
diff changeset
7 }
ff581cff7003 Working on Unity container xml configuration
cin
parents:
diff changeset
8 }