WebTestRequest.Outcome 属性
更新:2007 年 11 月
获取或设置 Web 测试请求的“通过”或“未通过”结果。
命名空间: Microsoft.VisualStudio.TestTools.WebTesting
程序集: Microsoft.VisualStudio.QualityTools.WebTestFramework(在 Microsoft.VisualStudio.QualityTools.WebTestFramework.dll 中)
语法
声明
Public Property Outcome As Outcome
用法
Dim instance As WebTestRequest
Dim value As Outcome
value = instance.Outcome
instance.Outcome = value
public Outcome Outcome { get; set; }
public:
property Outcome Outcome {
Outcome get ();
void set (Outcome value);
}
public function get Outcome () : Outcome
public function set Outcome (value : Outcome)
属性值
类型:Microsoft.VisualStudio.TestTools.WebTesting.Outcome
Web 测试请求的结果。
备注
设置 WebTestRequest.Outcome 的主要原因是要忽略预期失败,以使得 WebTestRequest 不受预期失败的影响,仍标记为“通过”。
如果使用 Web 测试代码设置 WebTestRequest 的结果,则应在 PostRequest 事件处理程序中进行设置,原因是如果较早地设置该值,Web 测试运行时引擎可能会重写您设置的值。
权限
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。