diff options
author | Bernard Normier <bernard@zeroc.com> | 2021-01-14 12:12:47 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-14 12:12:47 -0500 |
commit | 05edde5bcae0e5ee6b31bdb9923a8e5bb80fede1 (patch) | |
tree | fae64c8758ed0226c7bc005ce9372c6a511b643c /csharp/test/IceBox/admin/TestServiceI.cs | |
parent | Moved alias test from Slice to Ice test directory. (diff) | |
download | ice-before_streamline.tar.bz2 ice-before_streamline.tar.xz ice-before_streamline.zip |
Switch to Async skeletons in Ice core (#1240)before_streamline
Diffstat (limited to 'csharp/test/IceBox/admin/TestServiceI.cs')
-rw-r--r-- | csharp/test/IceBox/admin/TestServiceI.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/csharp/test/IceBox/admin/TestServiceI.cs b/csharp/test/IceBox/admin/TestServiceI.cs index a58e9effa2e..fcc87a3a908 100644 --- a/csharp/test/IceBox/admin/TestServiceI.cs +++ b/csharp/test/IceBox/admin/TestServiceI.cs @@ -18,7 +18,7 @@ namespace ZeroC.IceBox.Test.Admin // The TestFacetI servant also implements PropertiesAdminUpdateCallback. Set the callback on the admin facet. IObject? propFacet = serviceManagerCommunicator.FindAdminFacet("IceBox.Service.TestService.Properties"); - if (propFacet is IPropertiesAdmin admin) + if (propFacet is IAsyncPropertiesAdmin admin) { admin.Updated += (_, updates) => facet.Updated(updates); } |