File: System\Windows\Automation\Provider\AutomationInteropProvider.cs
Project: UIAutomationProvider.dll (UIAutomationProvider)
#region Assembly UIAutomationProvider, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
// C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\UIAutomationProvider.dll
#endregion
 
namespace System.Windows.Automation.Provider
{
    public static class AutomationInteropProvider
    {
        public const int AppendRuntimeId = 3;
        public const int InvalidateLimit = 20;
        public const int ItemsInvalidateLimit = 5;
        public const int RootObjectId = -25;
 
        public static bool ClientsAreListening { get; }
 
        public static IRawElementProviderSimple HostProviderFromHandle(IntPtr hwnd);
        public static void RaiseAutomationEvent(AutomationEvent eventId, IRawElementProviderSimple provider, AutomationEventArgs e);
        public static void RaiseAutomationPropertyChangedEvent(IRawElementProviderSimple element, AutomationPropertyChangedEventArgs e);
        public static void RaiseStructureChangedEvent(IRawElementProviderSimple provider, StructureChangedEventArgs e);
        public static IntPtr ReturnRawElementProvider(IntPtr hwnd, IntPtr wParam, IntPtr lParam, IRawElementProviderSimple el);
    }
}