* Stubed System.ComponentModel/LicenseContext.cs
[mono.git] / mcs / class / corlib / System.Runtime.Remoting.Metadata / SoapFieldAttribute.cs
1 //
2 // System.Runtime.Remoting.Metadata.SoapFieldAttribute.cs
3 //
4 // Author: Duncan Mak  (duncan@ximian.com)
5 //
6 // 2002 (C) Copyright, Ximian, Inc.
7 //
8
9 using System.Runtime.Remoting.Metadata;
10
11 namespace System.Runtime.Remoting.Metadata {
12
13         [AttributeUsage (AttributeTargets.Field)]
14         public sealed class SoapFieldAttribute : SoapAttribute
15         {
16                 public SoapFieldAttribute ()
17                 {
18                 }
19
20                 [MonoTODO]
21                 public int Order {
22                         get {
23                                 throw new NotImplementedException ();
24                         }
25
26                         set {
27                                 throw new NotImplementedException ();
28                         }
29                 }
30                 
31                 [MonoTODO]
32                 public string XmlElementName {
33                         get {
34                                 throw new NotImplementedException ();
35                         }
36
37                         set {
38                                 throw new NotImplementedException ();
39                         }
40                 }
41
42                 [MonoTODO]
43                 public bool IsInteropXmlElement ()
44                 {
45                         throw new NotImplementedException ();
46                 }
47         }
48 }