Udostępnij za pośrednictwem


Właściwość PreWebTestEventArgs.WebTest —

Pobiera WebTest obiekt, który jest rozpoczęcie i spowodowane PreWebTest zdarzenia.

Przestrzeń nazw:  Microsoft.VisualStudio.TestTools.WebTesting
Zestaw:  Microsoft.VisualStudio.QualityTools.WebTestFramework (w Microsoft.VisualStudio.QualityTools.WebTestFramework.dll)

Składnia

'Deklaracja
Public ReadOnly Property WebTest As WebTest
public WebTest WebTest { get; }
public:
property WebTest^ WebTest {
    WebTest^ get ();
}
member WebTest : WebTest with get
function get WebTest () : WebTest

Wartość właściwości

Typ: Microsoft.VisualStudio.TestTools.WebTesting.WebTest
A WebTest object.

Przykłady

Poniższy przykład pokazuje Web test dodatek typu plug-in, który dodaje liczbę losową w kontekście, przed uruchomieniem testu wydajności sieci Web jest.Po uruchomieniu testu wydajności sieci Web, dodatku typu plug-in Wyświetla długość ostatniego WebTestResponse.

Należy zwrócić uwagę, w jaki sposób ta właściwość zawiera odniesienie do 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());
        }
    }
}

Zabezpieczenia programu .NET Framework

Zobacz też

Informacje

PreWebTestEventArgs Klasa

Przestrzeń nazw Microsoft.VisualStudio.TestTools.WebTesting