2004-05-05 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / System.Messaging / System.Messaging / MessageEnumerator.cs
1 //\r
2 // System.Messaging\r
3 //\r
4 // Authors:\r
5 //      Peter Van Isacker (sclytrack@planetinternet.be)\r
6 //\r
7 // (C) 2003 Peter Van Isacker\r
8 //\r
9 \r
10 using System;\r
11 using System.Collections;\r
12 \r
13 namespace System.Messaging \r
14 {\r
15         public class MessageEnumerator: MarshalByRefObject, IEnumerator, IDisposable \r
16         {\r
17                 public Message Current {                \r
18                         [MonoTODO]\r
19                         get {throw new NotImplementedException();}\r
20                 }\r
21                 object IEnumerator.Current {\r
22                         [MonoTODO]\r
23                         get {throw new NotImplementedException();}\r
24                 }\r
25                 public IntPtr CursorHandle {\r
26                         [MonoTODO]\r
27                         get {throw new NotImplementedException();}\r
28                 }\r
29                 [MonoTODO]\r
30                 public void Close()\r
31                 {\r
32                         throw new NotImplementedException();\r
33                 }\r
34                 [MonoTODO]\r
35                 public void Dispose()\r
36                 {\r
37                         throw new NotImplementedException();\r
38                 }\r
39                 /*\r
40                 [MonoTODO]\r
41                 protected virtual void Dispose(bool disposing)\r
42                 {\r
43                         throw new NotImplementedException();\r
44                 }\r
45                 */\r
46                 [MonoTODO]\r
47                 public bool MoveNext()\r
48                 {\r
49                         throw new NotImplementedException();\r
50                 }\r
51                 [MonoTODO]\r
52                 public bool MoveNext(TimeSpan timeout)\r
53                 {\r
54                         throw new NotImplementedException();\r
55                 }\r
56                 [MonoTODO]\r
57                 public Message RemoveCurrent()\r
58                 {\r
59                         throw new NotImplementedException();\r
60                 }\r
61                 [MonoTODO]\r
62                 public Message RemoveCurrent(MessageQueueTransaction transaction)\r
63                 {\r
64                         throw new NotImplementedException();\r
65                 }\r
66                 [MonoTODO]\r
67                 public Message RemoveCurrent(MessageQueueTransactionType transactionType)\r
68                 {\r
69                         throw new NotImplementedException();\r
70                 }\r
71                 [MonoTODO]\r
72                 public Message RemoveCurrent(TimeSpan timeout)\r
73                 {\r
74                         throw new NotImplementedException();\r
75                 }\r
76                 [MonoTODO]\r
77                 public Message RemoveCurrent(TimeSpan timeout, MessageQueueTransaction transaction)\r
78                 {\r
79                         throw new NotImplementedException();\r
80                 }\r
81                 [MonoTODO]\r
82                 public Message RemoveCurrent(TimeSpan timeout, MessageQueueTransactionType transactionType)\r
83                 {\r
84                         throw new NotImplementedException();\r
85                 }\r
86                 [MonoTODO]\r
87                 public void Reset()\r
88                 {\r
89                         throw new NotImplementedException();\r
90                 }\r
91                 /*\r
92                 [MonoTODO]\r
93                 public void Dispose()\r
94                 {\r
95                         throw new NotImplementedException();\r
96                 }\r
97                 */\r
98                 /*\r
99                 [MonoTODO]\r
100                 protected virtual void Dispose(bool disposing)\r
101                 {\r
102                         throw new NotImplementedException();\r
103                 }\r
104                 [MonoTODO]\r
105                 protected virtual void Dispose(bool disposing)\r
106                 {\r
107                         throw new NotImplementedException();\r
108                 }\r
109                 */\r
110                 [MonoTODO]\r
111                 ~MessageEnumerator()\r
112                 {\r
113                 }\r
114         }\r
115 }\r