Share via


TestResult.StdErr Property

 

Gets or sets the stderr data that is generated by the test.

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

Syntax

[ReadOnlyAttribute(true)]
[UserVisiblePropertyAttribute("{42C44186-0318-41ca-95CA-07D8F4A1C375}")]
public string StdErr { get; set; }
public:
[ReadOnlyAttribute(true)]
[UserVisiblePropertyAttribute("{42C44186-0318-41ca-95CA-07D8F4A1C375}")]
property String^ StdErr {
    String^ get();
    void set(String^ value);
}
[<ReadOnlyAttribute(true)>]
[<UserVisiblePropertyAttribute("{42C44186-0318-41ca-95CA-07D8F4A1C375}")>]
member StdErr : string with get, set
<ReadOnlyAttribute(True)>
<UserVisiblePropertyAttribute("{42C44186-0318-41ca-95CA-07D8F4A1C375}")>
Public Property StdErr As String

Property Value

Type: System.String

The stderr data that is generated by the test.

See Also

TestResult Class
Microsoft.VisualStudio.TestTools.Common Namespace

Return to top