diff options
author | Jose <jose@zeroc.com> | 2016-07-07 11:49:14 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-07-07 11:49:14 +0200 |
commit | b3a329dc11fed649d2871ec30cc831ac1122f045 (patch) | |
tree | 6b2db98e1d2d0c07591a4c4b5e354b30e9b6113d /csharp/src/Ice/ConnectionRequestHandler.cs | |
parent | Fixed bug where marshalling of optional object dictionaries as parameters wou... (diff) | |
download | ice-b3a329dc11fed649d2871ec30cc831ac1122f045.tar.bz2 ice-b3a329dc11fed649d2871ec30cc831ac1122f045.tar.xz ice-b3a329dc11fed649d2871ec30cc831ac1122f045.zip |
Update C# mapping with async/await
Diffstat (limited to 'csharp/src/Ice/ConnectionRequestHandler.cs')
-rw-r--r-- | csharp/src/Ice/ConnectionRequestHandler.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/csharp/src/Ice/ConnectionRequestHandler.cs b/csharp/src/Ice/ConnectionRequestHandler.cs index bdec3ab6806..40e13fe7691 100644 --- a/csharp/src/Ice/ConnectionRequestHandler.cs +++ b/csharp/src/Ice/ConnectionRequestHandler.cs @@ -41,9 +41,9 @@ namespace IceInternal return this; } - public bool sendAsyncRequest(ProxyOutgoingAsyncBase outAsync, out Ice.AsyncCallback sentCallback) + public int sendAsyncRequest(ProxyOutgoingAsyncBase outAsync) { - return outAsync.invokeRemote(_connection, _compress, _response, out sentCallback); + return outAsync.invokeRemote(_connection, _compress, _response); } public void asyncRequestCanceled(OutgoingAsyncBase outAsync, Ice.LocalException ex) |