diff options
author | Jose <jose@zeroc.com> | 2016-07-22 17:57:42 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-07-22 17:57:42 +0200 |
commit | b55c347b5178f62db2a175b55900217217a46dbc (patch) | |
tree | 914e89427afe92828aac9d01c0a2d7b4046e751a /csharp/test/Slice/keyword/Client.cs | |
parent | Merge remote-tracking branch 'origin/3.6' (diff) | |
download | ice-b55c347b5178f62db2a175b55900217217a46dbc.tar.bz2 ice-b55c347b5178f62db2a175b55900217217a46dbc.tar.xz ice-b55c347b5178f62db2a175b55900217217a46dbc.zip |
CSharp AMD mapping update
Diffstat (limited to 'csharp/test/Slice/keyword/Client.cs')
-rw-r--r-- | csharp/test/Slice/keyword/Client.cs | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/csharp/test/Slice/keyword/Client.cs b/csharp/test/Slice/keyword/Client.cs index 168f0e9063e..2d0728a94ee 100644 --- a/csharp/test/Slice/keyword/Client.cs +++ b/csharp/test/Slice/keyword/Client.cs @@ -8,7 +8,6 @@ // ********************************************************************** using System; -using System.Diagnostics; using System.Collections.Generic; public class Client @@ -23,10 +22,10 @@ public class Client public sealed class caseI : @abstract.caseDisp_ { - public override void catch_async(@abstract.AMD_case_catch cb__, int @checked, Ice.Current current__) + public override void + catchAsync(int @checked, Action<int> response, Action<Exception> exception, Ice.Current current__) { - int @continue = 0; - cb__.ice_response(@continue); + response(0); } } @@ -47,10 +46,10 @@ public class Client public sealed class explicitI : @abstract.@explicit { - public override void catch_async(@abstract.AMD_case_catch cb__, int @checked, Ice.Current current__) + public override void + catchAsync(int @checked, Action<int> response, Action<Exception> exception, Ice.Current current__) { - int @continue = 0; - cb__.ice_response(@continue); + response(0); } public override void @default(Ice.Current current) |