6490f3b140261f6e4731d0fdd24fb486a33facdb
[mono.git] / mcs / class / System.Management / System.Management.Instrumentation / Instrumentation.cs
1 //
2 // System.Management.Instrumentation.Instrumentation
3 //
4 // Authors:
5 //      Martin Willemoes Hansen (mwh@sysrq.dk)
6 //
7 // (C) 2003 Martin Willemoes Hansen
8 //
9
10 using System.Reflection;
11
12 namespace System.Management.Instrumentation
13 {
14         public class Instrumentation {
15
16                 [MonoTODO]
17                 public Instrumentation()
18                 {
19                 }
20
21                 [MonoTODO]
22                 public static void Fire (object eventData)
23                 {
24                         throw new NotImplementedException();
25                 }
26
27                 [MonoTODO]
28                 public static bool IsAssemblyRegistered (Assembly assemblyToRegister)
29                 {
30                         throw new NotImplementedException();
31                 }
32
33                 [MonoTODO]
34                 public static void Publish (object instanceData)
35                 {
36                         throw new NotImplementedException();
37                 }
38
39                 [MonoTODO]
40                 public static void RegisterAssembly (Assembly assemblyToRegister) 
41                 {
42                         throw new NotImplementedException();
43                 }
44
45                 [MonoTODO]
46                 public static void Revoke (object instanceData)
47                 {
48                         throw new NotImplementedException();
49                 }
50
51                 [MonoTODO]
52                 public static void SetBatchSize (Type instrumentationClass, 
53                                                  int batchSize)
54                 {
55                         throw new NotImplementedException();
56                 }
57         }
58 }