IUITestEventNotify.Notify 方法
此 API 支持 .NET Framework 基础结构,不适合在代码中直接使用。
通过IUITechnologyManager.AddEventHandler添加的事件的回调方法。
回调在不同的线程比使用的一个应进行添加事件处理程序,以确保回调不阻止添加和移除事件处理程序。
命名空间: Microsoft.VisualStudio.TestTools.UITest.Extension
程序集: Microsoft.VisualStudio.TestTools.UITest.Extension(在 Microsoft.VisualStudio.TestTools.UITest.Extension.dll 中)
语法
声明
Sub Notify ( _
source As IUITechnologyElement, _
target As IUITechnologyElement, _
eventType As UITestEventType, _
eventArgs As Object _
)
void Notify(
IUITechnologyElement source,
IUITechnologyElement target,
UITestEventType eventType,
Object eventArgs
)
void Notify(
IUITechnologyElement^ source,
IUITechnologyElement^ target,
UITestEventType eventType,
Object^ eventArgs
)
abstract Notify :
source:IUITechnologyElement *
target:IUITechnologyElement *
eventType:UITestEventType *
eventArgs:Object -> unit
function Notify(
source : IUITechnologyElement,
target : IUITechnologyElement,
eventType : UITestEventType,
eventArgs : Object
)
参数
- source
类型:Microsoft.VisualStudio.TestTools.UITest.Extension.IUITechnologyElement
一个 IUITechnologyElement,表示源元素。
- target
类型:Microsoft.VisualStudio.TestTools.UITest.Extension.IUITechnologyElement
一个表示目标元素的 IUITechnologyElement。
- eventType
类型:Microsoft.VisualStudio.TestTools.UITest.Extension.UITestEventType
指定事件类型的 UITestEventType 枚举的成员。
- eventArgs
类型:System.Object
为事件提供的 EventArgs 对象。
备注
在大多数情况下,源和目标元素是相同的。
但是,这可能不总是这样。 例如,单击复选框的标签更改复选框的状态。 此处,源是标签,并在目标为复选框。 同样,那么,当目标是ComboBox时,该源可以是编辑器或在其中列表。
源可以是空的,即源和目标是相同的。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。