Ejemplo n.º 1
0
 /// <summary>
 /// Loads the url in the window. The url must contain the protocol prefix,
 /// e.g. the http:// or file://.
 /// If the load should bypass http cache then use the pragma header to achieve it.
 /// </summary>
 /// <param name="url"></param>
 /// <param name="options"></param>
 public void loadURL(string url, LoadURLOptions options = null)
 {
     if (options == null)
     {
         API.Apply("loadURL", url);
     }
     else
     {
         API.Apply("loadURL", url, options);
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="url"></param>
 /// <param name="options"></param>
 public void loadURL(string url, LoadURLOptions options)
 {
     API.Apply("loadURL", url, options);
 }