comparison Implab.ServiceHost/Unity/DependencyParameterElement.cs @ 275:6fefd5811b9b v3

refactoring
author cin
date Fri, 27 Apr 2018 16:57:30 +0300
parents 22629bf26121
children 963b17c275be
comparison
equal deleted inserted replaced
274:22629bf26121 275:6fefd5811b9b
7 public string DependencyName { get; set; } 7 public string DependencyName { get; set; }
8 8
9 [XmlAttribute("optional")] 9 [XmlAttribute("optional")]
10 public bool Optional { get; set; } 10 public bool Optional { get; set; }
11 11
12 internal override void Visit(InjectionValueBuilder builder) { 12 public override void Visit(InjectionValueBuilder builder) {
13 builder.Visit(this); 13 builder.Visit(this);
14 } 14 }
15 } 15 }
16 } 16 }