2002-04-04 Dick Porter <dick@ximian.com>
[mono.git] / mcs / class / System / System.Diagnostics / ProcessThreadCollection.cs
1 //
2 // System.Diagnostics.ProcessThreadCollection.cs
3 //
4 // Authors:
5 //      Dick Porter (dick@ximian.com)
6 //
7 // (C) 2002 Ximian, Inc.  http://www.ximian.com
8 //
9
10 using System.Collections;
11
12 namespace System.Diagnostics {
13         public class ProcessThreadCollection : ReadOnlyCollectionBase {
14                 [MonoTODO]
15                 protected ProcessThreadCollection() {
16                 }
17
18                 [MonoTODO]
19                 public ProcessThreadCollection(ProcessThread[] processThreads) {
20                 }
21                 
22                 [MonoTODO]
23                 public ProcessThread this[int index] {
24                         get {
25                                 return(null);
26                         }
27                 }
28
29                 [MonoTODO]
30                 public int Add(ProcessThread thread) {
31                         return(0);
32                 }
33
34                 [MonoTODO]
35                 public bool Contains(ProcessThread thread) {
36                         return(false);
37                 }
38
39                 [MonoTODO]
40                 public void CopyTo(ProcessThread[] array, int index) {
41                 }
42
43                 [MonoTODO]
44                 public int IndexOf(ProcessThread thread) {
45                         return(0);
46                 }
47
48                 [MonoTODO]
49                 public void Insert(int index, ProcessThread thread) {
50                 }
51
52                 [MonoTODO]
53                 public void Remove(ProcessThread thread) {
54                 }
55         }
56 }