| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- //
- // System.Xml.Serialization.XmlMembersMapping
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- using System.Reflection;
- namespace System.Xml.Serialization {
- public class XmlMembersMapping : XmlMapping {
- internal XmlMembersMapping ()
- {
- }
- #region Properties
- public int Count {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- public string ElementName {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- public XmlMemberMapping this [int index] {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- public string Namespace {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- public string TypeName {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- public string TypeNamespace {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- #endregion // Properties
- }
- }
|