Automobile.Example.Program.Main C# (CSharp) Method

Main() static private method

static private Main ( string args ) : void
args string
return void
        static void Main(string[] args)
        {
            MobileDb.CreateRegistrarClient("http://localhost:8080", new JsonProvider());

            var match = MobileDb.Instance.GetFirstMatch(new DeviceInfo {MobileOs = MobileOs.Android});

            var device = new ProxyDevice(match.IP);
            device.Connect();
            device.Browser.Navigate("http://google.com/");
            device.Disconnect();
        }
Program