Beispiel #1
0
        /// <summary>
        /// Navigates the webview to the next page in the navigation history, if one is available.
        /// </summary>
        public void GoForward()
        {
            Setup();

#if UNIWEBVIEW3_SUPPORTED
            UniWebViewInterface.GoForward(listener.Name);
#elif UNIWEBVIEW2_SUPPORTED
            UniWebViewPlugin.GoForward(listener.Name);
#else
            WWebViewPlugin.GoForward(listener.Name);
#endif
        }
Beispiel #2
0
 /// <summary>
 /// Go to the next page if there is any one.
 /// </summary>
 public void GoForward()
 {
     UniWebViewPlugin.GoForward(gameObject.name);
 }
Beispiel #3
0
 public void GoForward()
 {
     UniWebViewPlugin.GoForward(((Object)((Component)this).get_gameObject()).get_name());
 }