コード例 #1
0
ファイル: ConnectionInfo.cs プロジェクト: hdallasr/OrionSDK
        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();
        }