diff options
author | Bernard Normier <bernard@zeroc.com> | 2016-11-17 18:05:33 -0500 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2016-11-17 18:05:33 -0500 |
commit | f0c21cb5f22a369e6f2b22b730801c40acae8de0 (patch) | |
tree | daae93cce2ef67aa84432641de7bf5694046143a /csharp/src/Ice/ProxyFactory.cs | |
parent | Replaced double-underscores in java and java-compat (diff) | |
download | ice-f0c21cb5f22a369e6f2b22b730801c40acae8de0.tar.bz2 ice-f0c21cb5f22a369e6f2b22b730801c40acae8de0.tar.xz ice-f0c21cb5f22a369e6f2b22b730801c40acae8de0.zip |
Resync stream API for generated structs/enums in Java and C#
Diffstat (limited to 'csharp/src/Ice/ProxyFactory.cs')
-rw-r--r-- | csharp/src/Ice/ProxyFactory.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/csharp/src/Ice/ProxyFactory.cs b/csharp/src/Ice/ProxyFactory.cs index 159468ba8e3..012a26b0afe 100644 --- a/csharp/src/Ice/ProxyFactory.cs +++ b/csharp/src/Ice/ProxyFactory.cs @@ -57,7 +57,7 @@ namespace IceInternal public Ice.ObjectPrx streamToProxy(Ice.InputStream s) { Ice.Identity ident = new Ice.Identity(); - ident.iceRead(s); + ident.ice_readMembers(s); Reference r = _instance.referenceFactory().create(ident, s); return referenceToProxy(r); |