public void GestureInfoEventArgsGestureInfo()
        {
            tlog.Debug(tag, $"GestureInfoEventArgsGestureInfo START");

            var testingTarget = new GestureInfoEventArgs();

            Assert.IsNotNull(testingTarget, "Can't create success object GestureInfoEventArgs");
            Assert.IsInstanceOf <GestureInfoEventArgs>(testingTarget, "Should be an instance of GestureInfoEventArgs type.");

            tlog.Debug(tag, "GestureInfo : " + testingTarget.GestureInfo);

            testingTarget.Consumed = true;
            tlog.Debug(tag, "Consumed : " + testingTarget.Consumed);

            tlog.Debug(tag, $"GestureInfoEventArgsGestureInfo END (OK)");
        }
 private void OnAccessibilityGestureInfoReceived(object sender, GestureInfoEventArgs e)
 {
 }