IUITestEventNotify Interface

This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.

Provides an interface to be implemented by the test recording and playback engine and consumed by IUITechnologyManager objects to implement callback notifications.

Namespace:  Microsoft.VisualStudio.TestTools.UITest.Extension
Assembly:  Microsoft.VisualStudio.TestTools.UITest.Extension (in Microsoft.VisualStudio.TestTools.UITest.Extension.dll)

Syntax

'Declaration
<ComVisibleAttribute(True)> _
<GuidAttribute("164F27E0-147E-4BCD-9918-3CA8941F9430")> _
Public Interface IUITestEventNotify
[ComVisibleAttribute(true)]
[GuidAttribute("164F27E0-147E-4BCD-9918-3CA8941F9430")]
public interface IUITestEventNotify
[ComVisibleAttribute(true)]
[GuidAttribute(L"164F27E0-147E-4BCD-9918-3CA8941F9430")]
public interface class IUITestEventNotify
[<ComVisibleAttribute(true)>]
[<GuidAttribute("164F27E0-147E-4BCD-9918-3CA8941F9430")>]
type IUITestEventNotify =  interface end
public interface IUITestEventNotify

The IUITestEventNotify type exposes the following members.

Methods

  Name Description
Public method Notify The callback method for the event added via IUITechnologyManager.AddEventHandler. The callback should occur on a different thread than the one used to add the event handler to make sure that the callback is not blocking adding and removing of the event handlers.
Public method NotifyMultiSource The callback method for the event added via IUITechnologyManager.AddEventHandler. The callback should occur on a different thread than the one used to add the event handler to make sure that the callback is not blocking adding and removing of the event handlers.

Top

Remarks

The IUITechnologyManager should only consume this interface and never implement it.

See Also

Reference

Microsoft.VisualStudio.TestTools.UITest.Extension Namespace

IUITechnologyManager