QueryEventArgs.cs 283 B

12345678910111213141516171819202122
  1. //
  2. // QueryEventArgs.cs
  3. //
  4. // Author:
  5. // Atsushi Enomoto <[email protected]>
  6. //
  7. #if NET_2_0
  8. namespace System.Xml.Query
  9. {
  10. public abstract class QueryEventArgs : EventArgs
  11. {
  12. [MonoTODO]
  13. protected QueryEventArgs ()
  14. {
  15. }
  16. public abstract string Message { get; }
  17. }
  18. }
  19. #endif