| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- //
- // System.Xml.Serialization.XmlMemberMapping
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // 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
- }
- }
|