1
0

IInvokeProvider.cs 497 B

123456789101112131415
  1. namespace Avalonia.Automation.Provider
  2. {
  3. /// <summary>
  4. /// Exposes methods and properties to support UI Automation client access to controls that
  5. /// initiate or perform a single, unambiguous action and do not maintain state when
  6. /// activated.
  7. /// </summary>
  8. public interface IInvokeProvider
  9. {
  10. /// <summary>
  11. /// Sends a request to activate a control and initiate its single, unambiguous action.
  12. /// </summary>
  13. void Invoke();
  14. }
  15. }