summaryrefslogtreecommitdiff
path: root/csharp/src
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2017-04-28 19:25:17 +0200
committerJose <jose@zeroc.com>2017-04-28 19:25:17 +0200
commit1c0995efd37e8dd8d8bd88cae06d22ceab7bf478 (patch)
treeef07a16ea5010c2ec857864c1642e3f6c51a507e /csharp/src
parentAdd operator bool() to CommunicatorHolder (diff)
downloadice-1c0995efd37e8dd8d8bd88cae06d22ceab7bf478.tar.bz2
ice-1c0995efd37e8dd8d8bd88cae06d22ceab7bf478.tar.xz
ice-1c0995efd37e8dd8d8bd88cae06d22ceab7bf478.zip
Fix (ICE-7847) - Glacier2.SessionHelper.connect should not be public in C#
Diffstat (limited to 'csharp/src')
-rw-r--r--csharp/src/Glacier2/SessionHelper.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/csharp/src/Glacier2/SessionHelper.cs b/csharp/src/Glacier2/SessionHelper.cs
index 547221e8924..73c016377cb 100644
--- a/csharp/src/Glacier2/SessionHelper.cs
+++ b/csharp/src/Glacier2/SessionHelper.cs
@@ -29,7 +29,7 @@ public class SessionHelper
/// the communicator.</param>
/// <param name="finderStr">The stringified Ice.RouterFinder proxy.</param>
/// <param name="useCallbacks">True if the session should create an object adapter for receiving callbacks.</param>
- public SessionHelper(SessionCallback callback, Ice.InitializationData initData, string finderStr, bool useCallbacks)
+ internal SessionHelper(SessionCallback callback, Ice.InitializationData initData, string finderStr, bool useCallbacks)
{
_callback = callback;
_initData = initData;
@@ -201,7 +201,7 @@ public class SessionHelper
/// the exception.
/// </summary>
/// <param name="context">The request context to use when creating the session.</param>
- public void
+ internal void
connect(Dictionary<string, string> context)
{
lock(this)
@@ -222,7 +222,7 @@ public class SessionHelper
/// <param name="username">The user name.</param>
/// <param name="password">The password.</param>
/// <param name="context">The request context to use when creating the session.</param>
- public void
+ internal void
connect(string username, string password, Dictionary<string, string> context)
{
lock(this)