| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- //
- // XmlNodeEventArgs.cs:
- //
- // Author:
- // John Donagher ([email protected])
- //
- // (C) 2002 John Donagher
- //
- using System.Xml;
- using System;
- namespace System.Xml.Serialization
- {
- /// <summary>
- /// Summary description for XmlNodeEventArgs.
- /// </summary>
- public class XmlNodeEventArgs : EventArgs
- {
- [MonoTODO]
- public int LineNumber {
- get {
- throw new NotImplementedException();
- }
- }
- [MonoTODO]
- public int LinePosition {
- get {
- throw new NotImplementedException();
- }
- }
- [MonoTODO]
- public string LocalName {
- get {
- throw new NotImplementedException();
- }
- }
- [MonoTODO]
- public string Name {
- get {
- throw new NotImplementedException();
- }
- }
- [MonoTODO]
- public string NamespaceURI {
- get {
- throw new NotImplementedException();
- }
- }
- [MonoTODO]
- public XmlNodeType NodeType {
- get {
- throw new NotImplementedException();
- }
- }
- [MonoTODO]
- public object ObjectBeingDeserialized {
- get {
- throw new NotImplementedException();
- }
- }
- [MonoTODO]
- public string Text {
- get {
- throw new NotImplementedException();
- }
- }
- }
- }
|