Condividi tramite


Proprietà PreWebTestEventArgs.WebTest

ottiene WebTest l'oggetto che sta per iniziare e ha provocato PreWebTest evento.

Spazio dei nomi:  Microsoft.VisualStudio.TestTools.WebTesting
Assembly:  Microsoft.VisualStudio.QualityTools.WebTestFramework (in Microsoft.VisualStudio.QualityTools.WebTestFramework.dll)

Sintassi

'Dichiarazione
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

Valore proprietà

Tipo: Microsoft.VisualStudio.TestTools.WebTesting.WebTest
In WebTest oggetto.

Esempi

Nell'esempio seguente viene illustrato un plug-in test Web che aggiunge un numero casuale al contesto prima che il test delle prestazioni Web verrà eseguita.Una volta che il test delle prestazioni Web viene eseguita, il plug-in restituisce la lunghezza del piena WebTestResponse.

Notare che questa proprietà contiene un riferimento al 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());
        }
    }
}

Sicurezza di .NET Framework

Vedere anche

Riferimenti

PreWebTestEventArgs Classe

Spazio dei nomi Microsoft.VisualStudio.TestTools.WebTesting