| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- //
- // System.Xml.Serialization.XmlMemberMapping
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- namespace System.Xml.Serialization {
- public class 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
- }
- }
|