annotate Implab.ServiceHost/Unity/SerializedParameterElement.cs @ 271:d4d437ec4483
v3
Working on Unity xml configuration
author |
cin |
date |
Wed, 25 Apr 2018 19:23:35 +0300 |
parents |
ade80d94dfb5 |
children |
9d1cca834b05 |
rev |
line source |
271
|
1 using System.Xml;
|
|
2 using System.Xml.Schema;
|
|
3 using System.Xml.Serialization;
|
|
4
|
270
|
5 namespace Implab.ServiceHost.Unity
|
|
6 {
|
271
|
7 public class SerializedParameterElement : InjectionParameterElement {
|
|
8
|
|
9 [XmlAnyElement]
|
|
10 public XmlElement[] Content { get; set; }
|
270
|
11 }
|
|
12 } |