Share via


TestResult.DataCollectorMessages Property

 

Gets a read-only list of errors and warnings that are provided by diagnostic data adapters during the test.

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

Syntax

public IList<DataCollectorMessageInfo> DataCollectorMessages { get; internal set; }
public:
property IList<DataCollectorMessageInfo^>^ DataCollectorMessages {
    IList<DataCollectorMessageInfo^>^ get();
    internal: void set(IList<DataCollectorMessageInfo^>^ value);
}
member DataCollectorMessages : IList<DataCollectorMessageInfo> with get, internal set
Public Property DataCollectorMessages As IList(Of DataCollectorMessageInfo)
    Get
    Friend Set
End Property

Property Value

Type: System.Collections.Generic.IList<DataCollectorMessageInfo>

A list of messages that are provided by diagnostic data adapters during the test.

See Also

DataCollectorMessageInfo
TestResult Class
Microsoft.VisualStudio.TestTools.Common Namespace

Return to top