bing トランスレータを呼び出すメトロ スタイル アプリケーションを作成しましたが、うまくいきませんでした。このプログラムをデバッグしようとしましたが、UI が応答しません。それが私が使用しているURIなのか、それとも他の問題なのかわかりません。
ここに私のコード:
public string GetTranslatedText(string textToTranslate, string fromLang, string toLang)
{
string translation;
if (fromLang != toLang)
{
string uri = "http://api.microsofttranslator.com/v2/Http.svc/Translate?appId=" +
appID + "&text=" + textToTranslate + "&from=" + fromLang + "&to=" + toLang;
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(uri);
try
{
WebResponse response = request.GetResponse();
Stream strm = response.GetResponseStream();
StreamReader sr = new StreamReader(strm);
translation = sr.ReadToEnd();
response.Close();
sr.Close();
}
catch (WebException)
{
MessageBox.Show("Ensure that you are connected to the internet.",
"Translator", MessageBoxButton.OK, MessageBoxImage.Stop);
return (string.Empty);
}
}
else
{
MessageBox.Show("Will not translate to the same language.", "Translator",
MessageBoxButton.OK, MessageBoxImage.Exclamation);
return (string.Empty);
}
// Parse string into an XElement and get the XElement Value
// which is returned as the translated text.
return (XElement.Parse(translation).Value);
}