summaryrefslogtreecommitdiff
path: root/csharp/src/Ice/OutputStream.cs
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2016-11-17 18:05:33 -0500
committerBernard Normier <bernard@zeroc.com>2016-11-17 18:05:33 -0500
commitf0c21cb5f22a369e6f2b22b730801c40acae8de0 (patch)
treedaae93cce2ef67aa84432641de7bf5694046143a /csharp/src/Ice/OutputStream.cs
parentReplaced double-underscores in java and java-compat (diff)
downloadice-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/OutputStream.cs')
-rw-r--r--csharp/src/Ice/OutputStream.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/csharp/src/Ice/OutputStream.cs b/csharp/src/Ice/OutputStream.cs
index 930270c4207..2dc2521c443 100644
--- a/csharp/src/Ice/OutputStream.cs
+++ b/csharp/src/Ice/OutputStream.cs
@@ -343,7 +343,7 @@ namespace Ice
_encapsStack.start = _buf.b.position();
writeInt(0); // Placeholder for the encapsulation length.
- _encapsStack.encoding.iceWrite(this);
+ _encapsStack.encoding.ice_writeMembers(this);
}
/// <summary>
@@ -373,7 +373,7 @@ namespace Ice
{
Protocol.checkSupportedEncoding(encoding);
writeInt(6); // Size
- encoding.iceWrite(this);
+ encoding.ice_writeMembers(this);
}
/// <summary>
@@ -1972,7 +1972,7 @@ namespace Ice
else
{
Identity ident = new Identity();
- ident.iceWrite(this);
+ ident.ice_writeMembers(this);
}
}