// // System.Xml.Serialization.XmlMembersMapping // // Author: // Tim Coleman (tim@timcoleman.com) // // 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 } }