diff options
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) |