BindingFlags.Public needed here as Exception.HResult is now public in .NET 4.5. This...
[mono.git] / mcs / class / System.Runtime.Remoting / System.Runtime.Remoting.Channels / SoapServerFormatterSinkProvider.cs
1 //\r
2 // System.Runtime.Remoting.Channels.SoapServerFormatterSinkProvider.cs\r
3 //\r
4 // Author: Rodrigo Moya (rodrigo@ximian.com)\r
5 //         Lluis Sanchez Gual (lluis@ximian.com)\r
6 //\r
7 // 2002 (C) Copyright, Ximian, Inc.\r
8 //\r
9 \r
10 //\r
11 // Permission is hereby granted, free of charge, to any person obtaining\r
12 // a copy of this software and associated documentation files (the\r
13 // "Software"), to deal in the Software without restriction, including\r
14 // without limitation the rights to use, copy, modify, merge, publish,\r
15 // distribute, sublicense, and/or sell copies of the Software, and to\r
16 // permit persons to whom the Software is furnished to do so, subject to\r
17 // the following conditions:\r
18 // \r
19 // The above copyright notice and this permission notice shall be\r
20 // included in all copies or substantial portions of the Software.\r
21 // \r
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,\r
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\r
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\r
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\r
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
29 //\r
30 \r
31 using System.Collections;\r
32 using System.Runtime.Serialization.Formatters;\r
33 using System.Runtime.InteropServices;\r
34 \r
35 namespace System.Runtime.Remoting.Channels\r
36 {\r
37         public class SoapServerFormatterSinkProvider :\r
38                 IServerFormatterSinkProvider, IServerChannelSinkProvider\r
39         {\r
40                 private IServerChannelSinkProvider _next;\r
41                 SoapCore _soapCore;\r
42 \r
43 #if NET_1_0\r
44                 internal static string[] AllowedProperties = new string [] { "includeVersions", "strictBinding" };\r
45 #else\r
46                 internal static string[] AllowedProperties = new string [] { "includeVersions", "strictBinding", "typeFilterLevel" };\r
47 #endif\r
48 \r
49                 public SoapServerFormatterSinkProvider ()\r
50                 {\r
51                         _soapCore = SoapCore.DefaultInstance;\r
52                 }\r
53 \r
54                 public SoapServerFormatterSinkProvider (IDictionary properties,\r
55                                                         ICollection providerData)\r
56                 {\r
57                         _soapCore = new SoapCore (this, properties, AllowedProperties);\r
58                 }\r
59 \r
60                 public IServerChannelSinkProvider Next\r
61                 {\r
62                         get { return _next;     }\r
63 \r
64                         set { _next = value; }\r
65                 }\r
66 \r
67 #if NET_1_1\r
68                 [ComVisible(false)]\r
69                 public TypeFilterLevel TypeFilterLevel\r
70                 {\r
71                         get { return _soapCore.TypeFilterLevel; }\r
72                         set \r
73                         {\r
74                                 IDictionary props = (IDictionary) ((ICloneable)_soapCore.Properties).Clone ();\r
75                                 props ["typeFilterLevel"] = value;\r
76                                 _soapCore = new SoapCore (this, props, AllowedProperties);\r
77                         }\r
78                 }\r
79 #endif\r
80 \r
81                 public IServerChannelSink CreateSink (IChannelReceiver channel)\r
82                 {\r
83                         IServerChannelSink chain = _next.CreateSink(channel);\r
84                         SoapServerFormatterSink sinkFormatter = new SoapServerFormatterSink(SoapServerFormatterSink.Protocol.Http, chain, channel);\r
85                         sinkFormatter.SoapCore = _soapCore;\r
86                         \r
87                         return sinkFormatter;\r
88                 }\r
89 \r
90                 public void GetChannelData (IChannelDataStore channelData)\r
91                 {\r
92                         if(_next != null)\r
93                                 _next.GetChannelData(channelData);\r
94                 }\r
95         }\r
96 }\r