Merge pull request #572 from jack-pappas/sockets-ipproto
[mono.git] / mcs / class / System / System.Net.WebSockets / ClientWebSocket.cs
1 //
2 // ClientWebSocket.cs
3 //
4 // Author:
5 //       Martin Baulig <martin.baulig@xamarin.com>
6 //
7 // Copyright (c) 2013 Xamarin Inc. (http://www.xamarin.com)
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining a copy
10 // of this software and associated documentation files (the "Software"), to deal
11 // in the Software without restriction, including without limitation the rights
12 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 // copies of the Software, and to permit persons to whom the Software is
14 // furnished to do so, subject to the following conditions:
15 //
16 // The above copyright notice and this permission notice shall be included in
17 // all copies or substantial portions of the Software.
18 //
19 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 // THE SOFTWARE.
26
27 #if NET_4_5
28
29 using System;
30 using System.Threading;
31 using System.Threading.Tasks;
32
33 namespace System.Net.WebSockets
34 {
35         [MonoTODO]
36         public class ClientWebSocket : WebSocket
37         {
38                 public ClientWebSocketOptions Options {
39                         get { throw new NotImplementedException (); }
40                 }
41
42                 public Task ConnectAsync (Uri uri, CancellationToken cancellationToken)
43                 {
44                         throw new NotImplementedException ();
45                 }
46
47                 #region implemented abstract members of WebSocket
48                 public override void Abort ()
49                 {
50                         throw new NotImplementedException ();
51                 }
52                 public override Task CloseAsync (WebSocketCloseStatus closeStatus, string statusDescription, CancellationToken cancellationToken)
53                 {
54                         throw new NotImplementedException ();
55                 }
56                 public override Task CloseOutputAsync (WebSocketCloseStatus closeStatus, string statusDescription, CancellationToken cancellationToken)
57                 {
58                         throw new NotImplementedException ();
59                 }
60                 public override Task<WebSocketReceiveResult> ReceiveAsync (ArraySegment<byte> buffer, CancellationToken cancellationToken)
61                 {
62                         throw new NotImplementedException ();
63                 }
64                 public override Task SendAsync (ArraySegment<byte> buffer, WebSocketMessageType messageType, bool endOfMessage, CancellationToken cancellationToken)
65                 {
66                         throw new NotImplementedException ();
67                 }
68                 public override void Dispose ()
69                 {
70                         throw new NotImplementedException ();
71                 }
72                 public override WebSocketCloseStatus? CloseStatus {
73                         get {
74                                 throw new NotImplementedException ();
75                         }
76                 }
77                 public override string CloseStatusDescription {
78                         get {
79                                 throw new NotImplementedException ();
80                         }
81                 }
82                 public override WebSocketState State {
83                         get {
84                                 throw new NotImplementedException ();
85                         }
86                 }
87                 public override string SubProtocol {
88                         get {
89                                 throw new NotImplementedException ();
90                         }
91                 }
92                 #endregion
93         }
94 }
95
96 #endif
97