diff options
author | Jose <jose@zeroc.com> | 2018-07-20 19:19:30 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2018-07-20 19:19:30 +0200 |
commit | f831849a119aa592d207fd38428517b414c2b39d (patch) | |
tree | 88c4d1c69072ad45eda621079f0d1d8b89a1fd8e /csharp/test/Ice/proxy/MyDerivedClassI.cs | |
parent | Update Travis CI build to use ubuntu-18.04 (diff) | |
download | ice-f831849a119aa592d207fd38428517b414c2b39d.tar.bz2 ice-f831849a119aa592d207fd38428517b414c2b39d.tar.xz ice-f831849a119aa592d207fd38428517b414c2b39d.zip |
Xamarin testsuite
Diffstat (limited to 'csharp/test/Ice/proxy/MyDerivedClassI.cs')
-rw-r--r-- | csharp/test/Ice/proxy/MyDerivedClassI.cs | 48 |
1 files changed, 27 insertions, 21 deletions
diff --git a/csharp/test/Ice/proxy/MyDerivedClassI.cs b/csharp/test/Ice/proxy/MyDerivedClassI.cs index eaff470d289..954d1604f48 100644 --- a/csharp/test/Ice/proxy/MyDerivedClassI.cs +++ b/csharp/test/Ice/proxy/MyDerivedClassI.cs @@ -9,32 +9,38 @@ using System.Collections.Generic; -public sealed class MyDerivedClassI : Test.MyDerivedClassDisp_ +namespace Ice { - public MyDerivedClassI() + namespace proxy { - } + public sealed class MyDerivedClassI : Test.MyDerivedClassDisp_ + { + public MyDerivedClassI() + { + } - public override Ice.ObjectPrx echo(Ice.ObjectPrx obj, Ice.Current c) - { - return obj; - } + public override Ice.ObjectPrx echo(Ice.ObjectPrx obj, Ice.Current c) + { + return obj; + } - public override void shutdown(Ice.Current current) - { - current.adapter.getCommunicator().shutdown(); - } + public override void shutdown(Ice.Current current) + { + current.adapter.getCommunicator().shutdown(); + } - public override Dictionary<string, string> getContext(Ice.Current current) - { - return _ctx; - } + public override Dictionary<string, string> getContext(Ice.Current current) + { + return _ctx; + } - public override bool ice_isA(string s, Ice.Current current) - { - _ctx = current.ctx; - return base.ice_isA(s, current); - } + public override bool ice_isA(string s, Ice.Current current) + { + _ctx = current.ctx; + return base.ice_isA(s, current); + } - private Dictionary<string, string> _ctx; + private Dictionary<string, string> _ctx; + } + } } |