public string TranslateHtml(
string html,
GoogleLanguage from,
GoogleLanguage to
)
Public Function TranslateHtml (
html As String,
from As GoogleLanguage,
to As GoogleLanguage
) As String
Dim instance As TranslateClient
Dim html As String
Dim from As GoogleLanguage
Dim to As GoogleLanguage
Dim returnValue As String
returnValue = instance.TranslateHtml(html,
from, to)
public:
String^ TranslateHtml(
String^ html,
GoogleLanguage from,
GoogleLanguage to
)
member TranslateHtml :
html : string *
from : GoogleLanguage *
to : GoogleLanguage -> string
No code example is currently available or this language may not be supported.
[Missing <param name="to"/> documentation for "M:DevCase.ThirdParty.Google.Translate.TranslateClient.TranslateHtml(System.String,DevCase.Core.Networking.GoogleServices.GoogleLanguage,DevCase.Core.Networking.GoogleServices.GoogleLanguage)"]
No code example is currently available or this language may not be supported.
Dim client As New TranslateClient("YOUR API KEY")
Dim authSuccess As Boolean = client.Authorize()
Dim sourceHtml As String =
A Small Hello World Hi
This is very minimal "Hello world" HTML document.
.Value
Dim translatedHtml As String = client.TranslateHtml(sourceHtml, GoogleTranslateLanguage.EN, GoogleTranslateLanguage.ES)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.