diff options
Diffstat (limited to 'csharp/src/Ice/AsyncResult.cs')
-rw-r--r-- | csharp/src/Ice/AsyncResult.cs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/csharp/src/Ice/AsyncResult.cs b/csharp/src/Ice/AsyncResult.cs index 95729efe018..3ba9ebf65b7 100644 --- a/csharp/src/Ice/AsyncResult.cs +++ b/csharp/src/Ice/AsyncResult.cs @@ -47,9 +47,9 @@ namespace Ice { void cancel(); - Ice.Communicator getCommunicator(); + Communicator getCommunicator(); - Ice.Connection getConnection(); + Connection getConnection(); ObjectPrx getProxy(); @@ -66,17 +66,17 @@ namespace Ice string getOperation(); - AsyncResult whenSent(Ice.AsyncCallback cb); - AsyncResult whenSent(Ice.SentCallback cb); - AsyncResult whenCompleted(Ice.ExceptionCallback excb); + AsyncResult whenSent(AsyncCallback cb); + AsyncResult whenSent(SentCallback cb); + AsyncResult whenCompleted(ExceptionCallback excb); } public interface AsyncResult<T> : AsyncResult { - AsyncResult<T> whenCompleted(T cb, Ice.ExceptionCallback excb); + AsyncResult<T> whenCompleted(T cb, ExceptionCallback excb); - new AsyncResult<T> whenCompleted(Ice.ExceptionCallback excb); - new AsyncResult<T> whenSent(Ice.SentCallback cb); + new AsyncResult<T> whenCompleted(ExceptionCallback excb); + new AsyncResult<T> whenSent(SentCallback cb); } } |