PostWebTestEventArgs.WebTest 屬性
取得完成及導致 PostWebTest 事件的 WebTest 物件。
命名空間: Microsoft.VisualStudio.TestTools.WebTesting
組件: Microsoft.VisualStudio.QualityTools.WebTestFramework (在 Microsoft.VisualStudio.QualityTools.WebTestFramework.dll 中)
語法
'宣告
Public ReadOnly Property WebTest As WebTest
Get
public WebTest WebTest { get; }
public:
property WebTest^ WebTest {
WebTest^ get ();
}
member WebTest : WebTest
function get WebTest () : WebTest
屬性值
型別:Microsoft.VisualStudio.TestTools.WebTesting.WebTest
WebTest 物件。
範例
下列範例顯示 Web 效能測試外掛程式,這個外掛程式會在執行 Web 效能測試前將亂數加入至內容,並在執行 Web 效能測試後顯示最後 WebTestResponse 的長度。
請注意這個屬性如何提供 WebTest 之參考。
using System;
using Microsoft.VisualStudio.TestTools.WebTesting;
using System.Windows.Forms;
namespace WebTestPluginNamespace
{
public class MyWebTestPlugin : WebTestPlugin
{
public static string NewRandomNumberString(int size)
{
byte[] buffer = new byte[size];
// Seed using system time
Random random = new Random(unchecked((int)DateTime.Now.Ticks));
random.NextBytes(buffer);
return BitConverter.ToInt32(buffer, 0).ToString();
}
public override void PreWebTest(object sender, PreWebTestEventArgs e)
{
e.WebTest.Context["RandNum"] = NewRandomNumberString(4);
}
public override void PostWebTest(object sender, PostWebTestEventArgs e)
{
MessageBox.Show(e.WebTest.LastResponse.ContentLength.ToString());
}
}
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。