Пример #1
0
 public DlgKeywordSearch()
 {
     this.components = null;
     this.Searching = false;
     this.InitializeComponent();
     this.mService = new GPG.Multiplayer.Quazal.SolutionsLib.Service();
     this.mService.Url = ConfigSettings.GetString("SolutionsLibService", "http://gpgnet.gaspowered.com/quazal/Service.asmx?WSDL");
 }
Пример #2
0
 public DlgSearchResults(FrmMain mainForm, Solution[] results) : base(mainForm)
 {
     this.EntryList = new LinkedList<SearchResultEntry>();
     this.components = null;
     this.InitializeComponent();
     this.mService = new GPG.Multiplayer.Quazal.SolutionsLib.Service();
     this.mService.Url = ConfigSettings.GetString("SolutionsLibService", "http://gpgnet.gaspowered.com/quazal/Service.asmx?WSDL");
     this.mResultSet = results;
 }
Пример #3
0
 public DlgSolution()
 {
     this.mSolutionHistory = new LinkedList<Solution>();
     this.AsyncInProgress = false;
     this.LookupsInProgress = new List<int>();
     this.components = null;
     this.InitializeComponent();
     this.mService = new GPG.Multiplayer.Quazal.SolutionsLib.Service();
     this.mService.Url = ConfigSettings.GetString("SolutionsLibService", "http://gpgnet.gaspowered.com/quazal/Service.asmx?WSDL");
 }
Пример #4
0
 static Solution()
 {
     Service = new GPG.Multiplayer.Quazal.SolutionsLib.Service();
     Service.Url = ConfigSettings.GetString("SolutionsLibService", "http://gpgnet.gaspowered.com/quazal/Service.asmx?WSDL");
 }