annotate Implab.ServiceHost/Unity/DependencyParameterElement.cs @ 273:79110a16cab7
v3
Working on Unity xml configuration: Refactoring in progress
author |
cin |
date |
Thu, 26 Apr 2018 19:35:01 +0300 |
parents |
9d1cca834b05 |
children |
22629bf26121 |
rev |
line source |
272
|
1 using System.Xml.Serialization;
|
|
2
|
|
3 namespace Implab.ServiceHost.Unity {
|
|
4 public class DependencyParameterElement : InjectionParameterElement {
|
|
5
|
|
6 [XmlAttribute("name")]
|
|
7 public string DependencyName { get; set; }
|
|
8
|
|
9 [XmlAttribute("optional")]
|
|
10 public bool Optional { get; set; }
|
270
|
11 }
|
|
12 } |