UITestAction.Tags Property

 

Gets a dictionary of additional information about this action that is needed during recording, aggregation, or post-processing. The set procedure is private.

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

Syntax

public IDictionary<string, object> Tags { get; private set; }
public:
property IDictionary<String^, Object^>^ Tags {
    IDictionary<String^, Object^>^ get();
    private: void set(IDictionary<String^, Object^>^ value);
}
member Tags : IDictionary<string, Object> with get, private set
Public Property Tags As IDictionary(Of String, Object)
    Get
    Private Set
End Property

Property Value

Type: System.Collections.Generic.IDictionary<StringObject>

A dictionary of named values.

Remarks

This property is not persisted and is not available during playback.

See Also

UITestAction Class
Microsoft.VisualStudio.TestTools.UITest.Common Namespace

Return to top