diff Implab.ServiceHost/Unity/PropertyInjectionElement.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 22629bf26121
children 8714471e8d78
line wrap: on
line diff
--- a/Implab.ServiceHost/Unity/PropertyInjectionElement.cs	Sat Apr 28 00:11:38 2018 +0300
+++ b/Implab.ServiceHost/Unity/PropertyInjectionElement.cs	Sat Apr 28 18:48:09 2018 +0300
@@ -1,7 +1,7 @@
 using System.Xml.Serialization;
 
 namespace Implab.ServiceHost.Unity {
-    public class PropertyInjectionElement : AbstractInjectionElement {
+    public class PropertyInjectionElement : AbstractMemberInjection {
 
         [XmlAttribute("name")]
         public string Name { get; set; }
@@ -10,6 +10,7 @@
         [XmlElement("value", typeof(ValueParameterElement))]
         [XmlElement("serialized", typeof(SerializedParameterElement))]
         [XmlElement("default", typeof(DefaultParameterElement))]
+        [XmlElement("array", typeof(ArrayParameterElement))]
         public InjectionParameterElement Value { get; set; }
 
         internal override void Visit(TypeRegistrationBuilder context) {