/AvalonEdit/ICSharpCode.AvalonEdit/Xml/AXmlObjectEventArgs.cs

http://github.com/icsharpcode/ILSpy · C# · 21 lines · 14 code · 3 blank · 4 comment · 0 complexity · 18be1a5b2ca8f94a67391ee6e1f51d96 MD5 · raw file

  1. // Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
  2. // This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Collections.ObjectModel;
  6. using System.Collections.Specialized;
  7. using System.Diagnostics;
  8. using System.Linq;
  9. using ICSharpCode.AvalonEdit.Document;
  10. namespace ICSharpCode.AvalonEdit.Xml
  11. {
  12. /// <summary> Holds event args for event caused by <see cref="AXmlObject"/> </summary>
  13. public class AXmlObjectEventArgs: EventArgs
  14. {
  15. /// <summary> The object that caused the event </summary>
  16. public AXmlObject Object { get; set; }
  17. }
  18. }