Mercurial > pub > ImplabNet
annotate Implab.ServiceHost/Unity/ISerializedValue.cs @ 276:b4e0f81c7425 v3
container configuration docs
author | cin |
---|---|
date | Sat, 28 Apr 2018 00:11:38 +0300 |
parents | 22629bf26121 |
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 } |