annotate Implab.ServiceHost/Unity/SerializedParameterElement.cs @ 272:9d1cca834b05
v3
preview version of Unity xml configuration
author |
cin |
date |
Thu, 26 Apr 2018 03:14:54 +0300 |
parents |
d4d437ec4483 |
children |
79110a16cab7 |
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; }
|
272
|
11
|
|
12 internal override object Resolve(RegistrationContext context) {
|
|
13 return context.Resolve(this);
|
|
14 }
|
270
|
15 }
|
|
16 } |