Deveel.Data.Client.ConnectionClient.MakeRemoteEndPoint C# (CSharp) Method

MakeRemoteEndPoint() private method

private MakeRemoteEndPoint ( ) : ConnectionEndPoint
return Deveel.Data.Protocol.ConnectionEndPoint
        private ConnectionEndPoint MakeRemoteEndPoint()
        {
            var properties = new Dictionary<string, object>();
            var en = ((IDictionary)Settings).GetEnumerator();
            while (en.MoveNext()) {
                var current = en.Entry;
                properties.Add((string)current.Key, current.Value);
            }

            return Connector.MakeEndPoint(properties);
        }