Propriedade PostWebTestEventArgs.WebTest

Obtém o WebTest objeto que foi concluída e causou o PostWebTest 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 do teste de desempenho de Web é executado e exibe o tamanho da última WebTestResponse após o teste de desempenho de Web executar.

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

PostWebTestEventArgs Classe

Namespace Microsoft.VisualStudio.TestTools.WebTesting