summaryrefslogtreecommitdiff
path: root/csharp/src/Ice/ProxyFactory.cs
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2016-11-03 15:40:55 -0400
committerBernard Normier <bernard@zeroc.com>2016-11-03 15:40:55 -0400
commitc693f916141772b82da44d0ef90f64602a69d3ec (patch)
treebb104e0db314089bfae763dfeeff9a9c0fbcc0e4 /csharp/src/Ice/ProxyFactory.cs
parentFix ICE-7433 - C++ Ice/exceptions failure (diff)
downloadice-c693f916141772b82da44d0ef90f64602a69d3ec.tar.bz2
ice-c693f916141772b82da44d0ef90f64602a69d3ec.tar.xz
ice-c693f916141772b82da44d0ef90f64602a69d3ec.zip
Replaced double underscores in C# mapping by ice-prefix names
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 11a204f7a10..017b7ddd011 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.reference__().ToString();
+ return h.iceReference().ToString();
}
else
{
@@ -46,7 +46,7 @@ namespace IceInternal
if(proxy != null)
{
Ice.ObjectPrxHelperBase h = (Ice.ObjectPrxHelperBase) proxy;
- return h.reference__().toProperty(prefix);
+ return h.iceReference().toProperty(prefix);
}
else
{
@@ -57,7 +57,7 @@ namespace IceInternal
public Ice.ObjectPrx streamToProxy(Ice.InputStream s)
{
Ice.Identity ident = new Ice.Identity();
- ident.read__(s);
+ ident.iceRead(s);
Reference r = instance_.referenceFactory().create(ident, s);
return referenceToProxy(r);