| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- //
- // System.Runtime.Remoting.Channels.SoapServerFormatterSinkProvider.cs
- //
- // Author: Rodrigo Moya ([email protected])
- //
- // 2002 (C) Copyright, Ximian, Inc.
- //
- using System.Collections;
- namespace System.Runtime.Remoting.Channels
- {
- public class SoapServerFormatterSinkProvider :
- IServerFormatterSinkProvider, IServerChannelSinkProvider
- {
- private IServerChannelSinkProvider _next;
- // ////[MonoTODO]
- public SoapServerFormatterSinkProvider ()
- {
- // throw new NotImplementedException ();
- }
- // ////[MonoTODO]
- public SoapServerFormatterSinkProvider (IDictionary properties,
- ICollection providerData)
- {
- // throw new NotImplementedException ();
- }
- public IServerChannelSinkProvider Next
- {
- // ////[MonoTODO]
- get {
- return _next;
- }
- // ////[MonoTODO]
- set {
- _next = value;
- }
- }
- // ////[MonoTODO]
- public IServerChannelSink CreateSink (IChannelReceiver channel)
- {
- IServerChannelSink chain = _next.CreateSink(channel);
- IServerChannelSink sinkFormatter = new SoapServerFormatterSink(SoapServerFormatterSink.Protocol.Http, chain, channel);
-
- return sinkFormatter;
- }
- // ////[MonoTODO]
- public void GetChannelData (IChannelDataStore channelData)
- {
- if(_next != null)
- _next.GetChannelData(channelData);
- }
- }
- }
|