comparison Implab.ServiceHost/Unity/ISerializedValue.cs @ 274:22629bf26121 v3

Unity xml configuration, alpha2
author cin
date Fri, 27 Apr 2018 04:47:52 +0300
parents 79110a16cab7
children
comparison
equal deleted inserted replaced
273:79110a16cab7 274:22629bf26121
1 namespace Implab.ServiceHost.Unity 1 using System.Xml;
2 { 2
3 public class ISerializedValue 3 namespace Implab.ServiceHost.Unity {
4 { 4 public interface ISerializedValue {
5 5
6 string TypeName { get; }
7
8 XmlReader GetReader();
9
6 } 10 }
7 } 11 }