| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- //
- // XmlAttributeOverrides.cs:
- //
- // Author:
- // John Donagher ([email protected])
- //
- // (C) 2002 John Donagher
- //
- using System;
- namespace System.Xml.Serialization
- {
- /// <summary>
- /// Summary description for XmlAttributeOverrides.
- /// </summary>
- public class XmlAttributeOverrides
- {
-
- public XmlAttributes this[Type type]
- {
- [MonoTODO]
- get{ throw new NotImplementedException (); }
- }
- public XmlAttributes this[Type type, string member]
- {
- [MonoTODO]
- get{ throw new NotImplementedException (); }
- }
- [MonoTODO]
- public void Add (Type type, XmlAttributes attributes)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Add( Type type, string member, XmlAttributes attributes)
- {
- throw new NotImplementedException ();
- }
- }
- }
|