| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- //
- // System.Runtime.Remoting.Metadata.SoapFieldAttribute.cs
- //
- // Author: Duncan Mak ([email protected])
- //
- // 2002 (C) Copyright, Ximian, Inc.
- //
- using System.Runtime.Remoting.Metadata;
- namespace System.Runtime.Remoting.Metadata {
- [AttributeUsage (AttributeTargets.Field)]
- public sealed class SoapFieldAttribute : SoapAttribute
- {
- public SoapFieldAttribute ()
- {
- }
- [MonoTODO]
- public int Order {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
-
- [MonoTODO]
- public string XmlElementName {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public bool IsInteropXmlElement ()
- {
- throw new NotImplementedException ();
- }
- }
- }
|