UITestPropertyProvider.GetPropertyNames Method
When overridden in a derived class, returns a collection of property names in the given control.
Namespace: Microsoft.VisualStudio.TestTools.UITesting
Assembly: Microsoft.VisualStudio.TestTools.UITesting (in Microsoft.VisualStudio.TestTools.UITesting.dll)
Syntax
'Declaration
Public MustOverride Function GetPropertyNames ( _
uiTestControl As UITestControl _
) As ICollection(Of String)
public abstract ICollection<string> GetPropertyNames(
UITestControl uiTestControl
)
public:
virtual ICollection<String^>^ GetPropertyNames(
UITestControl^ uiTestControl
) abstract
abstract GetPropertyNames :
uiTestControl:UITestControl -> ICollection<string>
public abstract function GetPropertyNames(
uiTestControl : UITestControl
) : ICollection<String>
Parameters
uiTestControl
Type: Microsoft.VisualStudio.TestTools.UITesting.UITestControlA UITestControl control from which to get the property names.
Return Value
Type: ICollection<String>
A collection of property names in the given control.
.NET Framework Security
- 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.
See Also
Reference
Microsoft.VisualStudio.TestTools.UITesting Namespace