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-13 22:30:35 +0300
committerAndreas N <andreas@mono-cvs.ximian.com>2003-11-13 22:30:35 +0300
commita41bcb0ed350ec4c280f8856413947900237c6d5 (patch)
tree61af4ad1adfea1261ee0f355bac166b4f86059f1 /mcs/class/System/System.Diagnostics/ICollectData.cs
parentccf287dc0493e79975364f739a212282bb13114c (diff)
2003-11-13 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* ICollectData.cs: Fixed signature svn path=/trunk/mcs/; revision=19955
Diffstat (limited to 'mcs/class/System/System.Diagnostics/ICollectData.cs')
-rw-r--r--mcs/class/System/System.Diagnostics/ICollectData.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/mcs/class/System/System.Diagnostics/ICollectData.cs b/mcs/class/System/System.Diagnostics/ICollectData.cs
index 056dd196547..ff7fe82eac7 100644
--- a/mcs/class/System/System.Diagnostics/ICollectData.cs
+++ b/mcs/class/System/System.Diagnostics/ICollectData.cs
@@ -18,10 +18,10 @@ namespace System.Diagnostics
public interface ICollectData {
void CloseData ();
void CollectData (
- int id,
- IntPtr valueName,
- IntPtr data,
- int totalBytes,
+ [In] int id,
+ [In] IntPtr valueName,
+ [In] IntPtr data,
+ [In] int totalBytes,
out IntPtr res);
}
}