// // System.Xml.Serialization.XmlMemberMapping // // Author: // Tim Coleman (tim@timcoleman.com) // // Copyright (C) Tim Coleman, 2002 // namespace System.Xml.Serialization { public class XmlMemberMapping { internal XmlMemberMapping () { } #region Properties public bool Any { [MonoTODO] get { throw new NotImplementedException (); } } public string ElementName { [MonoTODO] get { throw new NotImplementedException (); } } public string MemberName { [MonoTODO] get { throw new NotImplementedException (); } } public string Namespace { [MonoTODO] get { throw new NotImplementedException (); } } public string TypeFullName { [MonoTODO] get { throw new NotImplementedException (); } } public string TypeName { [MonoTODO] get { throw new NotImplementedException (); } } public string TypeNamespace { [MonoTODO] get { throw new NotImplementedException (); } } #endregion // Properties } }