/ILSpy.BamlDecompiler/Ricciolo.StylesExplorer.MarkupReflection/XmlBamlNode.cs

http://github.com/icsharpcode/ILSpy · C# · 21 lines · 16 code · 3 blank · 2 comment · 0 complexity · 312f4600be5ffb438a668da4204ca5da MD5 · raw file

  1. // Copyright (c) Cristian Civera (cristian@aspitalia.com)
  2. // This code is distributed under the MS-PL (for details please see \doc\MS-PL.txt)
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. using System.Xml;
  7. namespace Ricciolo.StylesExplorer.MarkupReflection
  8. {
  9. internal class XmlBamlNode
  10. {
  11. public virtual XmlNodeType NodeType
  12. {
  13. get { return XmlNodeType.None;}
  14. }
  15. }
  16. internal class XmlBamlNodeCollection : List<XmlBamlNode>
  17. {}
  18. }