* Stubed rest of System.ComponentModel
[mono.git] / mcs / class / System / System.ComponentModel / LicenseProviderAttribute.cs
1 //
2 // System.ComponentModel.LicenseProviderAttribute
3 //
4 // Authors:
5 //      Martin Willemoes Hansen (mwh@sysrq.dk)
6 //
7 // (C) 2003 Martin Willemoes Hansen
8 //
9
10 namespace System.ComponentModel
11 {
12         [AttributeUsage(AttributeTargets.Class)]
13         public sealed class LicenseProviderAttribute : Attribute
14         {
15                 [MonoTODO]
16                 public LicenseProviderAttribute()
17                 {
18                 }
19
20                 [MonoTODO]
21                 public LicenseProviderAttribute (string typeName)
22                 {
23                         throw new NotImplementedException();
24                 }
25
26                 [MonoTODO]
27                 public LicenseProviderAttribute (Type type)
28                 {
29                         throw new NotImplementedException();
30                 }
31
32                 [MonoTODO]
33                 public Type LicenseProvider {
34                         [MonoTODO]
35                         get { throw new NotImplementedException(); }
36                 }
37                 
38                 public override object TypeId {
39                         [MonoTODO]
40                         get { throw new NotImplementedException(); }
41                 }
42
43                 [MonoTODO]
44                 public override bool Equals (object value)
45                 {
46                         throw new NotImplementedException();
47                 }
48
49                 [MonoTODO]
50                 public override int GetHashCode()
51                 {
52                         throw new NotImplementedException();
53                 }
54
55                 [MonoTODO]
56                 ~LicenseProviderAttribute()
57                 {
58                 }
59         }
60 }