| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- //
- // 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
- {
- [MonoTODO]
- public SoapServerFormatterSinkProvider ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public SoapServerFormatterSinkProvider (IDictionary properties,
- ICollection providerData)
- {
- throw new NotImplementedException ();
- }
- public IServerChannelSinkProvider Next
- {
- [MonoTODO]
- get {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public IServerChannelSink CreateSink (IChannelReceiver channel)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void GetChannelData (IChannelDataStore channelData)
- {
- throw new NotImplementedException ();
- }
- }
- }
|