Mercurial > pub > ImplabNet
annotate 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 |
rev | line source |
---|---|
274 | 1 using System.Xml; |
2 | |
3 namespace Implab.ServiceHost.Unity { | |
4 public interface ISerializedValue { | |
5 | |
6 string TypeName { get; } | |
7 | |
8 XmlReader GetReader(); | |
9 | |
273
79110a16cab7
Working on Unity xml configuration: Refactoring in progress
cin
parents:
diff
changeset
|
10 } |
79110a16cab7
Working on Unity xml configuration: Refactoring in progress
cin
parents:
diff
changeset
|
11 } |