Merge pull request #3248 from esdrubal/web_request_abort
[mono.git] / mcs / class / System.ServiceModel / System.ServiceModel.Channels / WebSocketTransportSettings.cs
1 // Authors:
2 //      Martin Baulig (martin.baulig@xamarin.com)
3 //
4 // Copyright 2012 Xamarin Inc. (http://www.xamarin.com)
5 //
6 //
7 // Permission is hereby granted, free of charge, to any person obtaining
8 // a copy of this software and associated documentation files (the
9 // "Software"), to deal in the Software without restriction, including
10 // without limitation the rights to use, copy, modify, merge, publish,
11 // distribute, sublicense, and/or sell copies of the Software, and to
12 // permit persons to whom the Software is furnished to do so, subject to
13 // the following conditions:
14 // 
15 // The above copyright notice and this permission notice shall be
16 // included in all copies or substantial portions of the Software.
17 // 
18 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 //
26 using System;
27
28 namespace System.ServiceModel.Channels {
29         [MonoTODO]
30         public sealed class WebSocketTransportSettings : IEquatable<WebSocketTransportSettings> {
31                 public WebSocketTransportSettings ()
32                 {
33                         throw new NotImplementedException ();
34                 }
35                 
36                 public const string BinaryEncoderTransferModeHeader = null;
37                 public const string BinaryMessageReceivedAction = "http://schemas.microsoft.com/2011/02/websockets/onbinarymessage";
38                 public const string ConnectionOpenedAction = null;
39                 public const string SoapContentTypeHeader = null;
40                 public const string TextMessageReceivedAction = "http://schemas.microsoft.com/2011/02/websockets/ontextmessage";
41
42                 public bool CreateNotificationOnConnection { get; set; }
43                 public bool DisablePayloadMasking { get; set; }
44                 public TimeSpan KeepAliveInterval { get; set; }
45                 public int MaxPendingConnections { get; set; }
46                 public int ReceiveBufferSize { get; set; }
47                 public int SendBufferSize { get; set; }
48                 public string SubProtocol { get; set; }
49                 public WebSocketTransportUsage TransportUsage { get; set; }
50
51                 public bool Equals (WebSocketTransportSettings other)
52                 {
53                         return other.CreateNotificationOnConnection == CreateNotificationOnConnection &&
54                                 other.DisablePayloadMasking == DisablePayloadMasking &&
55                                 other.KeepAliveInterval == KeepAliveInterval &&
56                                 other.MaxPendingConnections == MaxPendingConnections &&
57                                 other.ReceiveBufferSize == ReceiveBufferSize &&
58                                 other.SendBufferSize == SendBufferSize &&
59                                 other.SubProtocol == SubProtocol &&
60                                 other.TransportUsage == TransportUsage;
61                 }
62                 
63                 
64         }
65 }