WebTexture.LoadURL C# (CSharp) Метод

LoadURL() публичный Метод

public LoadURL ( string url ) : void
url string
Результат void
    public void LoadURL(string url)
    {
        if (WebCore.IsRunning)
            webView.LoadURL(url);
    }

Usage Example

Пример #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);
 }