From: Owen R. <exo...@us...> - 2005-04-07 04:30:53
|
Update of /cvsroot/netreflector/NetReflector/src/NetReflector/attributes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16181/src/NetReflector/attributes Modified Files: ReflectorPropertyAttribute.cs ReflectorTypeAttribute.cs Log Message: NETREF-3: NetReflector now generates warning events if the configuration xml contains unused nodes. Index: ReflectorTypeAttribute.cs =================================================================== RCS file: /cvsroot/netreflector/NetReflector/src/NetReflector/attributes/ReflectorTypeAttribute.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ReflectorTypeAttribute.cs 15 Nov 2004 05:13:03 -0000 1.4 --- ReflectorTypeAttribute.cs 7 Apr 2005 04:30:40 -0000 1.5 *************** *** 1,4 **** --- 1,5 ---- using System; using System.Xml; + using Exortech.NetReflector.Util; namespace Exortech.NetReflector *************** *** 32,35 **** --- 33,41 ---- } + public IXmlSerialiser CreateSerialiser(Type type, IInstantiator instantiator) + { + return new XmlTypeSerialiser(type, this, instantiator); + } + public void Write(XmlWriter writer, object target) { Index: ReflectorPropertyAttribute.cs =================================================================== RCS file: /cvsroot/netreflector/NetReflector/src/NetReflector/attributes/ReflectorPropertyAttribute.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** ReflectorPropertyAttribute.cs 3 Aug 2004 10:40:40 -0000 1.5 --- ReflectorPropertyAttribute.cs 7 Apr 2005 04:30:40 -0000 1.6 *************** *** 59,61 **** } } ! } --- 59,61 ---- } } ! } \ No newline at end of file |