summaryrefslogtreecommitdiff
path: root/csharp/test
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2017-03-04 09:10:18 +0100
committerBenoit Foucher <benoit@zeroc.com>2017-03-04 09:10:18 +0100
commitb21a2791675c12b82758583e5024421c91537cd7 (patch)
treedb44f1089cc23665bec372032e0b37be786b0338 /csharp/test
parentMore man page fixes (diff)
downloadice-b21a2791675c12b82758583e5024421c91537cd7.tar.bz2
ice-b21a2791675c12b82758583e5024421c91537cd7.tar.xz
ice-b21a2791675c12b82758583e5024421c91537cd7.zip
Fixed ICE-3710 - optional routing tables
Diffstat (limited to 'csharp/test')
-rw-r--r--csharp/test/Ice/background/Server.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/csharp/test/Ice/background/Server.cs b/csharp/test/Ice/background/Server.cs
index 96651378564..775f6df44b9 100644
--- a/csharp/test/Ice/background/Server.cs
+++ b/csharp/test/Ice/background/Server.cs
@@ -52,8 +52,9 @@ public class Server : TestCommon.Application
internal class RouterI : Ice.RouterDisp_
{
- public override Ice.ObjectPrx getClientProxy(Ice.Current current)
+ public override Ice.ObjectPrx getClientProxy(out Ice.Optional<bool> hasRoutingTable, Ice.Current current)
{
+ hasRoutingTable = new Ice.Optional<bool>(true);
_controller.checkCallPause(current);
return null;
}