diff options
Diffstat (limited to 'csharp/test/Ice/operations/BatchOnewaysAMI.cs')
-rw-r--r-- | csharp/test/Ice/operations/BatchOnewaysAMI.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/csharp/test/Ice/operations/BatchOnewaysAMI.cs b/csharp/test/Ice/operations/BatchOnewaysAMI.cs index 1c426681b20..77f124a3612 100644 --- a/csharp/test/Ice/operations/BatchOnewaysAMI.cs +++ b/csharp/test/Ice/operations/BatchOnewaysAMI.cs @@ -16,7 +16,7 @@ class BatchOnewaysAMI { if(!b) { - throw new System.Exception(); + throw new Exception(); } } @@ -91,7 +91,7 @@ class BatchOnewaysAMI batch1.begin_ice_ping(); batch2.begin_ice_ping(); batch1.end_ice_flushBatchRequests(batch1.begin_ice_flushBatchRequests()); - batch1.ice_getConnection().close(false); + batch1.ice_getConnection().close(Ice.ConnectionClose.GracefullyWithWait); batch1.begin_ice_ping(); batch2.begin_ice_ping(); @@ -99,7 +99,7 @@ class BatchOnewaysAMI batch2.ice_getConnection(); batch1.begin_ice_ping(); - batch1.ice_getConnection().close(false); + batch1.ice_getConnection().close(Ice.ConnectionClose.GracefullyWithWait); batch1.begin_ice_ping(); batch2.begin_ice_ping(); |