示例#1
0
        public ConnectionInfo(string server, string username, string password, string serverType)
        {
            ServerType = serverType;
            _server    = server;
            _username  = username;
            _password  = password;

            _infoServiceType = InfoServiceFactory.Create(serverType, username, password);
            QueryParameters  = new PropertyBag();
        }