Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas N <andreas@mono-cvs.ximian.com>2003-11-12 23:23:41 +0300
committerAndreas N <andreas@mono-cvs.ximian.com>2003-11-12 23:23:41 +0300
commit377d09d54d198a3b2db5b038a79ae43782f5501b (patch)
treeb746140c708747cf094a64bff1b72b19f0270625 /mcs/class/System/System.Diagnostics
parent9a51f6d10087764bc18c6383f0ca7a07880c21dc (diff)
2003-11-12 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* ICollectData.cs: Added missing attribute svn path=/trunk/mcs/; revision=19908
Diffstat (limited to 'mcs/class/System/System.Diagnostics')
-rw-r--r--mcs/class/System/System.Diagnostics/ChangeLog36
-rw-r--r--mcs/class/System/System.Diagnostics/ICollectData.cs5
2 files changed, 8 insertions, 33 deletions
diff --git a/mcs/class/System/System.Diagnostics/ChangeLog b/mcs/class/System/System.Diagnostics/ChangeLog
index 5b58888db0b..649bc057603 100644
--- a/mcs/class/System/System.Diagnostics/ChangeLog
+++ b/mcs/class/System/System.Diagnostics/ChangeLog
@@ -1,3 +1,7 @@
+2003-11-12 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
+
+ * ICollectData.cs: Added missing attribute
+
2003-07-27 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* SRDescriptionAttribute.cs: Moved to System directory
@@ -311,34 +315,4 @@
support
* DefaultTraceListener.cs: new file; the default trace listener
-2002-01-17 Miguel de Icaza <miguel@ximian.com>
-
- * TraceListenerCollection.cs: Remove Warnings.
-
-2002-01-06 Ravi Pratap <ravi@ximian.com>
-
- * Switch.cs, TraceListenerCollection.cs : Decorate incomplete bits
- with the MonoTODO attribute.
-
-2002-01-04 John R. Hicks <angryjohn69@nc.rr.com>
- * Added Debug.cs to the build.
-2002-01-04 John R. Hicks <angryjohn69@nc.rr.com>
- * Added preliminary TraceListenerCollection.cs to the build.
-2002-01-04 John R. Hicks <angryjohn69@nc.rr.com>
- * Added TraceListener.cs, TextWriterTraceListener.cs, and
- DefaultTraceListener.cs to the build and moved them into the
- proper assembly.
-2002-01-04 John R. Hicks <angryjohn69@nc.rr.com>
- * Added DiagnosticsConfigurationHandler.cs to the build.
-
-2001-09-09 Nick Drochak <ndrochak@gol.com>
-
- * BooleanSwitch.cs: Make this class use it's parent class's features. Namely, use SwitchSetting
- so that we can get OnSwitchSettingChanged() to fire for free.
-
-2001-09-09 Nick Drochak <ndrochak@gol.com>
-
- * ChangeLog: added this file
-
- * Switch.cs: call OnSwitchSettingChanged() when the switch setting is, yes you gessed it, changed.
-
+2002-01-17 Miguel de Icaza <miguel@ximian.com> * TraceListenerCollection.cs: Remove Warnings.2002-01-06 Ravi Pratap <ravi@ximian.com> * Switch.cs, TraceListenerCollection.cs : Decorate incomplete bits with the MonoTODO attribute.2002-01-04 John R. Hicks <angryjohn69@nc.rr.com> * Added Debug.cs to the build.2002-01-04 John R. Hicks <angryjohn69@nc.rr.com> * Added preliminary TraceListenerCollection.cs to the build.2002-01-04 John R. Hicks <angryjohn69@nc.rr.com> * Added TraceListener.cs, TextWriterTraceListener.cs, and DefaultTraceListener.cs to the build and moved them into the proper assembly.2002-01-04 John R. Hicks <angryjohn69@nc.rr.com> * Added DiagnosticsConfigurationHandler.cs to the build.2001-09-09 Nick Drochak <ndrochak@gol.com> * BooleanSwitch.cs: Make this class use it's parent class's features. Namely, use SwitchSetting so that we can get OnSwitchSettingChanged() to fire for free.2001-09-09 Nick Drochak <ndrochak@gol.com> * ChangeLog: added this file * Switch.cs: call OnSwitchSettingChanged() when the switch setting is, yes you gessed it, changed. \ No newline at end of file
diff --git a/mcs/class/System/System.Diagnostics/ICollectData.cs b/mcs/class/System/System.Diagnostics/ICollectData.cs
index 8ed58307627..056dd196547 100644
--- a/mcs/class/System/System.Diagnostics/ICollectData.cs
+++ b/mcs/class/System/System.Diagnostics/ICollectData.cs
@@ -11,8 +11,10 @@ using System;
using System.Diagnostics;
using System.Runtime.InteropServices;
-namespace System.Diagnostics {
+namespace System.Diagnostics
+{
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
+ [Guid("73386977-D6FD-11D2-BED5-00C04F79E3AE")]
public interface ICollectData {
void CloseData ();
void CollectData (
@@ -23,4 +25,3 @@ namespace System.Diagnostics {
out IntPtr res);
}
}
-