##// END OF EJS Templates
container configuration docs
container configuration docs

File last commit:

r274:22629bf26121 v3
r276:b4e0f81c7425 v3
Show More
ISerializedValue.cs
10 lines | 170 B | text/x-csharp | CSharpLexer
using System.Xml;
namespace Implab.ServiceHost.Unity {
public interface ISerializedValue {
string TypeName { get; }
XmlReader GetReader();
}
}