[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / class / System.Messaging / System.Messaging / DefaultPropertiesToSend.cs
1 //
2 // System.Messaging
3 //
4 // Authors:
5 //      Peter Van Isacker (sclytrack@planetinternet.be)
6 //
7 // (C) 2003 Peter Van Isacker
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 using System;
32 using System.ComponentModel;
33 using System.ComponentModel.Design;
34
35 namespace System.Messaging 
36 {
37         [TypeConverter (typeof(ExpandableObjectConverter))]
38         public class DefaultPropertiesToSend 
39         {
40                 [MonoTODO]
41                 public DefaultPropertiesToSend()
42                 {
43                 }
44
45                 [DefaultValue (AcknowledgeTypes.None)]
46                 [MessagingDescription ("MsgAcknowledgeType")]
47                 public AcknowledgeTypes AcknowledgeType {
48                         [MonoTODO]
49                         get {throw new NotImplementedException();}
50                         [MonoTODO]
51                         set {throw new NotImplementedException();}
52                 }
53
54                 [DefaultValue (null)]
55                 [MessagingDescription ("MsgAdministrationQueue")]
56                 public MessageQueue AdministrationQueue {
57                         [MonoTODO]
58                         get {throw new NotImplementedException();}
59                         [MonoTODO]
60                         set {throw new NotImplementedException();}
61                 }
62
63                 [DefaultValue (0)]
64                 [MessagingDescription ("MsgAppSpecific")]
65                 public int AppSpecific {
66                         [MonoTODO]
67                         get {throw new NotImplementedException();}
68                         [MonoTODO]
69                         set {throw new NotImplementedException();}
70                 }
71
72                 [DefaultValue (true)]
73                 [MessagingDescription ("MsgAttachSenderId")]
74                 public bool AttachSenderId {
75                         [MonoTODO]
76                         get {throw new NotImplementedException();}
77                         [MonoTODO]
78                         set {throw new NotImplementedException();}
79                 }
80
81                 [DefaultValue (EncryptionAlgorithm.Rc2)]
82                 [MessagingDescription ("MsgEncryptionAlgorithm")]
83                 public EncryptionAlgorithm EncryptionAlgorithm {
84                         [MonoTODO]
85                         get {throw new NotImplementedException();}
86                         [MonoTODO]
87                         set {throw new NotImplementedException();}
88                 }
89
90                 [Editor ("System.ComponentModel.Design.ArrayEditor, " + Consts.AssemblySystem_Design, "System.Drawing.Design.UITypeEditor, " + Consts.AssemblySystem_Drawing)]
91                 [MessagingDescription ("MsgExtension")]
92                 public byte[] Extension {
93                         [MonoTODO]
94                         get {throw new NotImplementedException();}
95                         [MonoTODO]
96                         set {throw new NotImplementedException();}
97                 }
98
99                 [DefaultValue (HashAlgorithm.Md5)]
100                 [MessagingDescription ("MsgHashAlgorithm")]
101                 public HashAlgorithm HashAlgorithm {
102                         [MonoTODO]
103                         get {throw new NotImplementedException();}
104                         [MonoTODO]
105                         set {throw new NotImplementedException();}
106                 }
107
108                 [DefaultValue ("")]
109                 [MessagingDescription ("MsgLabel")]
110                 public string Label {
111                         [MonoTODO]
112                         get {throw new NotImplementedException();}
113                         [MonoTODO]
114                         set {throw new NotImplementedException();}
115                 }
116
117                 [DefaultValue (MessagePriority.Normal)]
118                 [MessagingDescription ("MsgPriority")]
119                 public MessagePriority Priority {
120                         [MonoTODO]
121                         get {throw new NotImplementedException();}
122                         [MonoTODO]
123                         set {throw new NotImplementedException();}
124                 }
125
126                 [DefaultValue (false)]
127                 [MessagingDescription ("MsgRecoverable")]
128                 public bool Recoverable {
129                         [MonoTODO]
130                         get {throw new NotImplementedException();}
131                         [MonoTODO]
132                         set {throw new NotImplementedException();}
133                 }
134
135                 [DefaultValue (null)]
136                 [MessagingDescription ("MsgResponseQueue")]
137                 public MessageQueue ResponseQueue {
138                         [MonoTODO]
139                         get {throw new NotImplementedException();}
140                         [MonoTODO]
141                         set {throw new NotImplementedException();}
142                 }
143
144                 [TypeConverter (typeof(TimeoutConverter))]
145                 [MessagingDescription ("MsgTimeToBeReceived")]
146                 public TimeSpan TimeToBeReceived {
147                         [MonoTODO]
148                         get {throw new NotImplementedException();}
149                         [MonoTODO]
150                         set {throw new NotImplementedException();}
151                 }
152
153                 [TypeConverter (typeof(TimeoutConverter))]
154                 [MessagingDescription ("MsgTimeToReachQueue")]
155                 public TimeSpan TimeToReachQueue {
156                         [MonoTODO]
157                         get {throw new NotImplementedException();}
158                         [MonoTODO]
159                         set {throw new NotImplementedException();}
160                 }
161
162                 [DefaultValue (null)]
163                 [MessagingDescription ("MsgTransactionStatusQueue")]
164                 public MessageQueue TransactionStatusQueue {
165                         [MonoTODO]
166                         get {throw new NotImplementedException();}
167                         [MonoTODO]
168                         set {throw new NotImplementedException();}
169                 }
170
171                 [DefaultValue (false)]
172                 [MessagingDescription ("MsgUseAuthentication")]
173                 public bool UseAuthentication {
174                         [MonoTODO]
175                         get {throw new NotImplementedException();}
176                         [MonoTODO]
177                         set {throw new NotImplementedException();}
178                 }
179
180                 [DefaultValue (false)]
181                 [MessagingDescription ("MsgUseDeadLetterQueue")]
182                 public bool UseDeadLetterQueue {
183                         [MonoTODO]
184                         get {throw new NotImplementedException();}
185                         [MonoTODO]
186                         set {throw new NotImplementedException();}
187                 }
188
189                 [DefaultValue (false)]
190                 [MessagingDescription ("MsgUseEncryption")]
191                 public bool UseEncryption {
192                         [MonoTODO]
193                         get {throw new NotImplementedException();}
194                         [MonoTODO]
195                         set {throw new NotImplementedException();}
196                 }
197
198                 [DefaultValue (false)]
199                 [MessagingDescription ("MsgUseJournalQueue")]
200                 public bool UseJournalQueue {
201                         [MonoTODO]
202                         get {throw new NotImplementedException();}
203                         [MonoTODO]
204                         set {throw new NotImplementedException();}
205                 }
206
207                 [DefaultValue (false)]
208                 [MessagingDescription ("MsgUseTracing")]
209                 public bool UseTracing {
210                         [MonoTODO]
211                         get {throw new NotImplementedException();}
212                         [MonoTODO]
213                         set {throw new NotImplementedException();}
214                 }
215         }
216 }