GenericParameter.cs: override Module properly
[mcs.git] / class / Mono.Posix / Mono.Remoting.Channels.Unix / UnixBinaryServerFormatterSinkProvider.cs
blob2d5a99e8560fc2d2b597302f5f2e2b79ab141e13
1 //
2 // Mono.Remoting.Channels.Unix.UnixBinaryServerFormatterSinkProvider.cs
3 //
4 // Author: Rodrigo Moya (rodrigo@ximian.com)
5 // Lluis Sanchez Gual (lluis@ximian.com)
6 //
7 // 2002 (C) Copyright, Ximian, Inc.
8 //
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.
31 using System.Collections;
32 using System.Runtime.Serialization.Formatters;
33 using System.Runtime.InteropServices;
34 using System.Runtime.Remoting.Channels;
36 namespace Mono.Remoting.Channels.Unix
38 internal class UnixBinaryServerFormatterSinkProvider: IServerFormatterSinkProvider, IServerChannelSinkProvider
40 IServerChannelSinkProvider next = null;
41 UnixBinaryCore _binaryCore;
43 internal static string[] AllowedProperties = new string [] { "includeVersions", "strictBinding" };
45 public UnixBinaryServerFormatterSinkProvider ()
47 _binaryCore = UnixBinaryCore.DefaultInstance;
50 public UnixBinaryServerFormatterSinkProvider (IDictionary properties, ICollection providerData)
52 _binaryCore = new UnixBinaryCore (this, properties, AllowedProperties);
55 public IServerChannelSinkProvider Next
57 get {
58 return next;
61 set {
62 next = value;
66 public IServerChannelSink CreateSink (IChannelReceiver channel)
68 IServerChannelSink next_sink = null;
69 UnixBinaryServerFormatterSink result;
71 if (next != null)
72 next_sink = next.CreateSink (channel);
74 result = new UnixBinaryServerFormatterSink (next_sink, channel);
76 result.BinaryCore = _binaryCore;
77 return result;
80 public void GetChannelData (IChannelDataStore channelData)
82 // Nothing to add here