Automobile.Mobile.Android.Automation.AndroidDevice.BeginAutomation C# (CSharp) Method

BeginAutomation() public method

public BeginAutomation ( ) : void
return void
        public override void BeginAutomation()
        {
            try
            {
                base.BeginAutomation();
            }
            catch (Exception e)
            {
                // This block is useful for debugging
                // The framework is targeted for .net and not mono so this is the first place we can catch an exception there
                throw e;
            }
        }