Wed Feb 24 15:47:16 CET 2010 Paolo Molaro <lupus@ximian.com>
[mono.git] / mcs / class / System.Net / System.Net.Sockets / UdpAnySourceMulticastClient.cs
1 //
2 // UdpAnySourceMulticastClient (Moonlight 4.0)
3 //
4 // Author:
5 //      Sebastien Pouliot  <sebastien@ximian.com>
6 //
7 // Copyright (C) 2010 Novell, Inc.
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 // 
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 // 
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 #if NET_2_1
30
31 namespace System.Net.Sockets {
32
33         [MonoTODO ("stub (with some validations) to allow SL4 tests compilation")]
34         public class UdpAnySourceMulticastClient : IDisposable {
35
36                 const string ObjectDisposed = "UdpAnySourceMulticastClient instance was disposed.";
37                 bool disposed;
38
39                 public UdpAnySourceMulticastClient (IPAddress groupAddress, int localPort)
40                 {
41                         if (groupAddress == null)
42                                 throw new ArgumentNullException ("groupAddress");
43                         if ((localPort < 0) || (localPort > 65535))
44                                 throw new ArgumentOutOfRangeException ("localPort");
45                         if (localPort < 1024)
46                                 throw new SocketException ();
47
48                         throw new NotImplementedException ();
49                 }
50
51                 public bool MulticastLoopback { get; set; }
52                 public int ReceiveBufferSize { get; set; }
53                 public int SendBufferSize { get; set; }
54
55                 public IAsyncResult BeginJoinGroup (AsyncCallback callback, object state)
56                 {
57                         if (disposed)
58                                 throw new ObjectDisposedException (ObjectDisposed);
59
60                         // check policy
61                         //throw new SocketException ((int) SocketError.AccessDenied);
62                         throw new NotImplementedException ();
63                         // callback called if join operation is completed
64                 }
65
66                 public void EndJoinGroup (IAsyncResult result)
67                 {
68                         if (result == null)
69                                 throw new ArgumentNullException ("result");
70                         if (disposed)
71                                 throw new ObjectDisposedException (ObjectDisposed);
72
73                         throw new NotImplementedException ();
74                 }
75
76                 public IAsyncResult BeginReceiveFromGroup (byte [] buffer, int offset, int count, AsyncCallback callback, object state)
77                 {
78                         if (disposed)
79                                 throw new ObjectDisposedException (ObjectDisposed);
80                         if (buffer == null)
81                                 throw new ArgumentNullException ("buffer");
82                         if ((offset < 0) || (offset > buffer.Length))
83                                 throw new ArgumentOutOfRangeException ("offset");
84                         if ((count < 0) || (count > buffer.Length - offset))
85                                 throw new ArgumentOutOfRangeException ("count");
86
87                         throw new NotImplementedException ();
88                 }
89
90                 public int EndReceiveFromGroup (IAsyncResult result, out IPEndPoint source)
91                 {
92                         if (disposed)
93                                 throw new ObjectDisposedException (ObjectDisposed);
94
95                         throw new NotImplementedException ();
96                 }
97
98                 public IAsyncResult BeginSendTo (byte [] buffer, int offset, int count, IPEndPoint remoteEndPoint, AsyncCallback callback, object state)
99                 {
100                         if (disposed)
101                                 throw new ObjectDisposedException (ObjectDisposed);
102                         if (buffer == null)
103                                 throw new ArgumentNullException ("buffer");
104                         if ((offset < 0) || (offset > buffer.Length))
105                                 throw new ArgumentOutOfRangeException ("offset");
106                         if ((count < 0) || (count > buffer.Length - offset))
107                                 throw new ArgumentOutOfRangeException ("count");
108
109                         throw new NotImplementedException ();
110                 }
111
112                 public void EndSendTo (IAsyncResult result)
113                 {
114                         if (disposed)
115                                 throw new ObjectDisposedException (ObjectDisposed);
116                         if (result == null)
117                                 throw new ArgumentNullException ("result");
118
119                         throw new NotImplementedException ();
120                 }
121
122                 public IAsyncResult BeginSendToGroup (byte [] buffer, int offset, int count, AsyncCallback callback, object state)
123                 {
124                         if (disposed)
125                                 throw new ObjectDisposedException (ObjectDisposed);
126                         if (buffer == null)
127                                 throw new ArgumentNullException ("buffer");
128                         if ((offset < 0) || (offset > buffer.Length))
129                                 throw new ArgumentOutOfRangeException ("offset");
130                         if ((count < 0) || (count > buffer.Length - offset))
131                                 throw new ArgumentOutOfRangeException ("count");
132
133                         throw new NotImplementedException ();
134                 }
135
136                 public void EndSendToGroup (IAsyncResult result)
137                 {
138                         if (disposed)
139                                 throw new ObjectDisposedException (ObjectDisposed);
140                         if (result == null)
141                                 throw new ArgumentNullException ("result");
142
143                         throw new NotImplementedException ();
144                 }
145
146                 public void BlockSource (IPAddress sourceAddress)
147                 {
148                         if (disposed)
149                                 throw new ObjectDisposedException (ObjectDisposed);
150
151                         throw new NotImplementedException ();
152                 }
153
154                 public void UnblockSource (IPAddress sourceAddress)
155                 {
156                         if (disposed)
157                                 throw new ObjectDisposedException (ObjectDisposed);
158
159                         throw new NotImplementedException ();
160                 }
161
162                 public void Dispose ()
163                 {
164                         disposed = true;
165                 }
166         }
167 }
168
169 #endif
170