InvokePattern.Invoke Method
Sends a request to activate a control and initiate its single, unambiguous action.
Namespace: System.Windows.Automation
Assembly: UIAutomationClient (in UIAutomationClient.dll)
| Exception | Condition |
|---|---|
| InvalidOperationException | The element does not support the InvokePattern control pattern or is hidden or blocked. |
| ElementNotEnabledException | The element is not enabled. Can be raised when a UI Automation provider has implemented its own handling of the IsEnabled property. |
Calls to Invoke should return immediately without blocking. However, this behavior is entirely dependent on the Microsoft UI Automation provider implementation. In scenarios where calling Invoke causes a blocking issue (such as a modal dialog) a separate helper thread may be required to call the method.
In the following example an InvokePattern control pattern is obtained from a control and the Invoke method is called.
///-------------------------------------------------------------------- /// <summary> /// Obtains an InvokePattern control pattern from a control /// and calls the InvokePattern.Invoke() method on the control. /// </summary> /// <param name="targetControl"> /// The control of interest. /// </param> ///-------------------------------------------------------------------- private void InvokeControl(AutomationElement targetControl) { InvokePattern invokePattern = null; try { invokePattern = targetControl.GetCurrentPattern(InvokePattern.Pattern) as InvokePattern; } catch (ElementNotEnabledException) { // Object is not enabled return; } catch (InvalidOperationException) { // object doesn't support the InvokePattern control pattern return; } invokePattern.Invoke(); }
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.