diff options
author | Jose <jose@zeroc.com> | 2017-04-28 19:25:17 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-04-28 19:25:17 +0200 |
commit | 1c0995efd37e8dd8d8bd88cae06d22ceab7bf478 (patch) | |
tree | ef07a16ea5010c2ec857864c1642e3f6c51a507e /csharp/src | |
parent | Add operator bool() to CommunicatorHolder (diff) | |
download | ice-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.cs | 6 |
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) |