459607f4c146802aa8c3e726658ec6b65846b456
[mono.git] / mcs / class / System.Management / System.Management.Instrumentation / InstrumentedAttribute.cs
1 //
2 // System.Management.Instrumentation.InstrumentedAttribute
3 //
4 // Authors:
5 //      Martin Willemoes Hansen (mwh@sysrq.dk)
6 //
7 // (C) 2003 Martin Willemoes Hansen
8 //
9
10 namespace System.Management.Instrumentation
11 {
12         [AttributeUsage(AttributeTargets.Assembly)]
13         public class InstrumentedAttribute : Attribute {
14                 
15                 [MonoTODO]
16                 public InstrumentedAttribute()
17                 {
18                 }\r
19 \r
20                 [MonoTODO]\r
21                 public InstrumentedAttribute (string namespaceName) : this(namespaceName, null)\r
22                 {\r
23                 }\r
24 \r
25                 [MonoTODO]\r
26                 public InstrumentedAttribute (string namespaceName, string securityDescriptor)\r
27                 {\r
28                 }\r
29 \r
30                 public string NamespaceName {
31                         [MonoTODO]
32                         get { throw new NotImplementedException(); }
33                 }
34
35                 public string SecurityDescriptor {
36                         [MonoTODO]
37                         get { throw new NotImplementedException(); }
38                 }
39         }
40 }