| 12345678910111213141516171819202122 |
- //
- // QueryEventArgs.cs
- //
- // Author:
- // Atsushi Enomoto <[email protected]>
- //
- #if NET_2_0
- namespace System.Xml.Query
- {
- public abstract class QueryEventArgs : EventArgs
- {
- [MonoTODO]
- protected QueryEventArgs ()
- {
- }
- public abstract string Message { get; }
- }
- }
- #endif
|