| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- //
- // System.Runtime.Remoting.Channels.Tcp.TcpChannel.cs
- //
- // Author: Rodrigo Moya ([email protected])
- //
- // 2002 (C) Copyright, Ximian, Inc.
- //
- using System.Collections;
- using System.Runtime.Remoting.Messaging;
- namespace System.Runtime.Remoting.Channels.Tcp
- {
- public class TcpChannel : IChannelReceiver, IChannel,
- IChannelSender
- {
- private int tcp_port;
-
- public TcpChannel ()
- {
- tcp_port = 0;
- }
- public TcpChannel (int port)
- {
- tcp_port = port;
- }
- [MonoTODO]
- public TcpChannel (IDictionary properties,
- IClientChannelSinkProvider clientSinkProvider,
- IServerChannelSinkProvider serverSinkProvider)
- {
- throw new NotImplementedException ();
- }
- public object ChannelData
- {
- [MonoTODO]
- get {
- throw new NotImplementedException ();
- }
- }
- public string ChannelName
- {
- [MonoTODO]
- get {
- throw new NotImplementedException ();
- }
- }
- public int ChannelPriority
- {
- [MonoTODO]
- get {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public IMessageSink CreateMessageSink (string url,
- object remoteChannelData,
- out string objectURI)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public string[] GetUrlsForUri (string objectURI)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public string Parse (string url, out string objectURI)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void StartListening (object data)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void StopListening (object data)
- {
- throw new NotImplementedException ();
- }
- }
- }
|