Compartilhar via


Propriedade PreWebTestEventArgs.WebTest

Obtém o WebTest o objeto que está prestes a iniciar e causou o PreWebTest de evento.

Namespace:  Microsoft.VisualStudio.TestTools.WebTesting
Assembly:  Microsoft.VisualStudio.QualityTools.WebTestFramework (em Microsoft.VisualStudio.QualityTools.WebTestFramework.dll)

Sintaxe

'Declaração
Public ReadOnly Property WebTest As WebTest
    Get
public WebTest WebTest { get; }
public:
property WebTest^ WebTest {
    WebTest^ get ();
}
member WebTest : WebTest
function get WebTest () : WebTest

Valor de propriedade

Tipo: Microsoft.VisualStudio.TestTools.WebTesting.WebTest
A WebTest objeto.

Exemplos

O exemplo a seguir mostra um desempenho teste da Web plug-in que adiciona um número aleatório para o contexto antes de executa o teste de desempenho da Web. Após a execução do teste de desempenho da Web, o plug-in exibe o tamanho da última WebTestResponse.

Observe como essa propriedade fornece uma referência para o 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());
        }
    }
}

Segurança do .NET Framework

Consulte também

Referência

PreWebTestEventArgs Classe

Namespace Microsoft.VisualStudio.TestTools.WebTesting