LoadURL() public method

public LoadURL ( string url ) : void
url string
return void
Exemplo n.º 1
0
 private void OnOpenExternalLink(object sender, OpenExternalLinkEventArgs e)
 {
     Debug.Log(String.Format("Navigating to: {0}", e.Url));
     // For this sample, we simply load the page to the same view.
     webTexture.LoadURL(e.Url);
 }