From bd3d46162ce8e3f380ea24f4838b02ad76dbd936 Mon Sep 17 00:00:00 2001 From: Gert Driesen Date: Wed, 31 May 2006 09:13:12 +0000 Subject: [PATCH] * TcpClientChannel.cs: Marked CreateMessageSink virtual. * TcpServerChannel.cs: Marked GetUrlsForUri virtual. svn path=/trunk/mcs/; revision=61304 --- .../System.Runtime.Remoting.Channels.Tcp/ChangeLog | 5 +++++ .../System.Runtime.Remoting.Channels.Tcp/TcpClientChannel.cs | 2 +- .../System.Runtime.Remoting.Channels.Tcp/TcpServerChannel.cs | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Tcp/ChangeLog b/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Tcp/ChangeLog index 365d337458d..60763a1f7ed 100644 --- a/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Tcp/ChangeLog +++ b/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Tcp/ChangeLog @@ -1,3 +1,8 @@ +2006-05-31 Gert Driesen + + * TcpClientChannel.cs: Marked CreateMessageSink virtual. + * TcpServerChannel.cs: Marked GetUrlsForUri virtual. + 2006-05-31 Gert Driesen * TcpClientChannel.cs: Set eol-style to native. diff --git a/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Tcp/TcpClientChannel.cs b/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Tcp/TcpClientChannel.cs index 6019e3ac1ce..c460e2e0b33 100644 --- a/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Tcp/TcpClientChannel.cs +++ b/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Tcp/TcpClientChannel.cs @@ -102,7 +102,7 @@ namespace System.Runtime.Remoting.Channels.Tcp } } - public IMessageSink CreateMessageSink (string url, + public virtual IMessageSink CreateMessageSink (string url, object remoteChannelData, out string objectURI) { diff --git a/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Tcp/TcpServerChannel.cs b/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Tcp/TcpServerChannel.cs index b51a3198eaa..3557a918413 100644 --- a/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Tcp/TcpServerChannel.cs +++ b/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Tcp/TcpServerChannel.cs @@ -182,7 +182,7 @@ namespace System.Runtime.Remoting.Channels.Tcp return "tcp://" + host + ":" + port; } - public string[] GetUrlsForUri (string uri) + public virtual string[] GetUrlsForUri (string uri) { if (!uri.StartsWith ("/")) uri = "/" + uri; -- 2.25.1