view 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
line wrap: on
line source

using System.Xml;
using System.Xml.Schema;
using System.Xml.Serialization;

namespace Implab.ServiceHost.Unity
{
    public class SerializedParameterElement : InjectionParameterElement {

        [XmlAnyElement]
        public XmlElement[] Content { get; set; }
    }
}