Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

UITechnologyManagerProxy::ConvertToExtensionElement Method (IUITechnologyElement^)

 

Conversion of core element to extension element.

All plugins extending this proxy technology manager must implement this and create a simple conversion with copy of core technology element and extension manager. Something like : public override IUITechnologyElement ConvertToExtensionElement(IUITechnologyElement coreElement) { ExtensionTechnologyElement extensionElement = new ExtensionTechnologyElement(); extensionElement.ExtensionTechnologyManager = this; extensionElement.CoreTechnologyElement = coreElement; return extensionElement; }

Namespace:   Microsoft.VisualStudio.TestTools.UITesting
Assembly:  Microsoft.VisualStudio.TestTools.UITesting (in Microsoft.VisualStudio.TestTools.UITesting.dll)

public:
virtual IUITechnologyElement^ ConvertToExtensionElement(
	IUITechnologyElement^ coreElement
) abstract

Parameters

coreElement
Type: Microsoft.VisualStudio.TestTools.UITest.Extension::IUITechnologyElement^

The core technology element that must be wrapped.

Return to top
Show: