public GeolocationRequestEventArgs(string u, bool a, IWebSecurityOrigin o)
 {
     Url    = u;
     Allow  = a;
     Origin = o;
 }
Esempio n. 2
0
 bool uiDelegate_GeolocationReq(WebView sender, webFrame frame, IWebSecurityOrigin o)
 {
     GeolocationRequestEventArgs args = new GeolocationRequestEventArgs(Url.ToString(), true, o);
     GeolocationPositionRequest(this, args);
     return args.Allow;
 }
 public GeolocationRequestEventArgs(string u, bool a, IWebSecurityOrigin o)
 {
     Url = u;
     Allow = a;
     Origin = o;
 }