New tests.
[mono.git] / mcs / class / corlib / System / AppDomain.cs
index b066493fc6785a0c4a0a2ddd0441c4fbaf166fec..b2e1e57f46f218ea7b49f2c76761a688db3e972e 100644 (file)
@@ -1519,6 +1519,32 @@ namespace System {
                        // default (at least for SL4) is to return false for unknown values (can't get a null out of it)
                        return false;
                }
+
+               [MonoTODO ("Currently always returns false")]
+               public static bool MonitoringIsEnabled { 
+                       get { return false; }
+                       set { throw new NotImplementedException (); }
+               }
+
+               [MonoTODO]
+               public long MonitoringSurvivedMemorySize {
+                       get { throw new NotImplementedException (); }
+               }
+
+               [MonoTODO]
+               public static long MonitoringSurvivedProcessMemorySize {
+                       get { throw new NotImplementedException (); }
+               }
+
+               [MonoTODO]
+               public long MonitoringTotalAllocatedMemorySize {
+                       get { throw new NotImplementedException (); }
+               }
+
+               [MonoTODO]
+               public TimeSpan MonitoringTotalProcessorTime {
+                       get { throw new NotImplementedException (); }
+               }
 #endif
        }
 }