Inheritance: Automobile.Mobile.Framework.Browser.MobileBrowser
Beispiel #1
0
 public iOSDevice(UIDevice device, UIWebView webView, ConnectionType connType, string connString)
     : base(connType, connString, new JsonProvider())
 {
     _device = device;
     Browser = new iOSBrowser(webView);
     DeviceInfo = new DeviceInfo();
     DeviceInfo.MobileOs = MobileOs.iOS;
     DeviceInfo.OsVersion = _device.SystemVersion;
     DeviceInfo.DeviceModel = _device.Model;
     DeviceInfo.UniqueId = _device.IdentifierForVendor.ToString();
     DeviceInfo.IP = IP;
 }