| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //
- // System.Runtime.Remoting.Channels.BinaryClientFormatterSinkProvider.cs
- //
- // Author: Rodrigo Moya ([email protected])
- //
- // 2002 (C) Copyright, Ximian, Inc.
- //
- using System.Collections;
- namespace System.Runtime.Remoting.Channels
- {
- public class BinaryClientFormatterSinkProvider :
- IClientFormatterSinkProvider, IClientChannelSinkProvider
- {
- [MonoTODO]
- public BinaryClientFormatterSinkProvider ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public BinaryClientFormatterSinkProvider (IDictionary properties,
- ICollection providerData)
- {
- throw new NotImplementedException ();
- }
- public IClientChannelSinkProvider Next
- {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public IClientChannelSink CreateSink (IChannelSender channel,
- string url,
- object remoteChannelData)
- {
- throw new NotImplementedException ();
- }
- }
- }
|