LearnLanguages.Study.ViewModels.StudyPhraseTimedQuestionAnswerViewModel.ResearchQuestion C# (CSharp) Method

ResearchQuestion() public method

public ResearchQuestion ( ) : void
return void
    public void ResearchQuestion()
    {
      var googleLink = string.Format(StudyResources.ResearchFormatStringGoogle, Question.Text);
      var bingLink = string.Format(StudyResources.ResearchFormatStringBing, Question.Text);
      //HtmlPage.Window.Navigate(new Uri(googleLink), "_blank");
      HtmlPage.Window.Navigate(new Uri(bingLink), "_blank"); 
    }