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);
 }