view Implab.ServiceHost/Unity/SerializedElement.cs @ 278:6691aff01de1 v3

Implab: added XmlDefaultSeializer (SerializersPool is now obsolete) Implab.ServiceHost: rewritten TypeReference (added support for nested types), stable API
author cin
date Thu, 03 May 2018 09:59:44 +0300
parents 963b17c275be
children 8714471e8d78
line wrap: on
line source

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

namespace Implab.ServiceHost.Unity
{
    public class SerializedElement : InstanceAbstractRegistration {
        [XmlAttribute("href")]
        public string Location { get; set; }

        [XmlAttribute("serializedType")]
        public string SerializedType { get; set; }


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

        public override void Visit(InstanceRegistrationBuilder builder) {
            base.Visit(builder);

            var parameter = new SerializedParameterElement {
                TypeName = SerializedType,
                Location = Location,
                Content = Content
            };
            parameter.Visit(builder.ValueBuilder);
        }
    }
}