summaryrefslogtreecommitdiff
path: root/csharp/src/Ice/ProxyFactory.cs
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2016-11-05 10:51:02 -0400
committerBernard Normier <bernard@zeroc.com>2016-11-05 10:51:02 -0400
commit23ae7e4f92e538506d033a27284c0a09002666f0 (patch)
tree81b75ac07df7ea8923ba1ecb3d8a0451cc2bcc90 /csharp/src/Ice/ProxyFactory.cs
parentRevert "Renamed protected _slicedData to _iceSlicedData in generated code" (diff)
downloadice-23ae7e4f92e538506d033a27284c0a09002666f0.tar.bz2
ice-23ae7e4f92e538506d033a27284c0a09002666f0.tar.xz
ice-23ae7e4f92e538506d033a27284c0a09002666f0.zip
Revert "Replaced double underscores in C# mapping by ice-prefix names"
This reverts commit c693f916141772b82da44d0ef90f64602a69d3ec.
Diffstat (limited to 'csharp/src/Ice/ProxyFactory.cs')
-rw-r--r--csharp/src/Ice/ProxyFactory.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/csharp/src/Ice/ProxyFactory.cs b/csharp/src/Ice/ProxyFactory.cs
index 017b7ddd011..11a204f7a10 100644
--- a/csharp/src/Ice/ProxyFactory.cs
+++ b/csharp/src/Ice/ProxyFactory.cs
@@ -26,7 +26,7 @@ namespace IceInternal
if(proxy != null)
{
Ice.ObjectPrxHelperBase h = (Ice.ObjectPrxHelperBase) proxy;
- return h.iceReference().ToString();
+ return h.reference__().ToString();
}
else
{
@@ -46,7 +46,7 @@ namespace IceInternal
if(proxy != null)
{
Ice.ObjectPrxHelperBase h = (Ice.ObjectPrxHelperBase) proxy;
- return h.iceReference().toProperty(prefix);
+ return h.reference__().toProperty(prefix);
}
else
{
@@ -57,7 +57,7 @@ namespace IceInternal
public Ice.ObjectPrx streamToProxy(Ice.InputStream s)
{
Ice.Identity ident = new Ice.Identity();
- ident.iceRead(s);
+ ident.read__(s);
Reference r = instance_.referenceFactory().create(ident, s);
return referenceToProxy(r);