| 12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // XmlElementEventArgs.cs:
- //
- // Author:
- // John Donagher ([email protected])
- //
- // (C) 2002 John Donagher
- //
- using System.Xml;
- using System;
- namespace System.Xml.Serialization
- {
- /// <summary>
- /// Summary description for XmlElementEventArgs.
- /// </summary>
- public class XmlElementEventArgs : EventArgs
- {
- [MonoTODO]
- public XmlElement Element {
- get{ throw new NotImplementedException(); }
- }
- [MonoTODO]
- public int LineNumber {
- get{ throw new NotImplementedException(); }
- }
- [MonoTODO]
- public int LinePosition {
- get{ throw new NotImplementedException(); }
- }
- [MonoTODO]
- public object ObjectBeingDeserialized {
- get{ throw new NotImplementedException(); }
- }
- }
- }
|