Classe PreWebTestEventArgs
fornisce i dati per WebTest.PreWebTest evento.
Gerarchia di ereditarietà
System.Object
System.EventArgs
Microsoft.VisualStudio.TestTools.WebTesting.PreWebTestEventArgs
Spazio dei nomi: Microsoft.VisualStudio.TestTools.WebTesting
Assembly: Microsoft.VisualStudio.QualityTools.WebTestFramework (in Microsoft.VisualStudio.QualityTools.WebTestFramework.dll)
Sintassi
'Dichiarazione
Public Class PreWebTestEventArgs _
Inherits EventArgs
public class PreWebTestEventArgs : EventArgs
public ref class PreWebTestEventArgs : public EventArgs
type PreWebTestEventArgs =
class
inherit EventArgs
end
public class PreWebTestEventArgs extends EventArgs
Il tipo PreWebTestEventArgs espone i seguenti membri.
Proprietà
Nome | Descrizione | |
---|---|---|
WebTest | ottiene WebTest l'oggetto che sta per iniziare e ha provocato PreWebTest evento. |
In alto
Metodi
Nome | Descrizione | |
---|---|---|
Equals | Determina se l'oggetto specificato equivale all'oggetto corrente. (Ereditato da Object) | |
Finalize | Consente a un oggetto di provare a liberare risorse ed eseguire altre operazioni di pulitura prima che l'oggetto stesso venga recuperato dalla procedura di Garbage Collection. (Ereditato da Object) | |
GetHashCode | Funge da funzione hash per un determinato tipo. (Ereditato da Object) | |
GetType | Ottiene l'oggetto Type dell'istanza corrente. (Ereditato da Object) | |
MemberwiseClone | Consente di creare una copia dei riferimenti dell'oggetto Object corrente. (Ereditato da Object) | |
ToString | Restituisce una stringa che rappresenta l'oggetto corrente. (Ereditato da Object) |
In alto
Note
Ciò specificamente fornisce un riferimento a WebTest ciò ha richiamato PreWebTest evento.
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.
Si noti l'utilizzo di PreWebTestEventArgs nella specifica di un riferimento a 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());
}
}
}
Codice thread safe
Qualsiasi membro static (Shared in Visual Basic) pubblico di questo tipo è thread-safe. I membri di istanza non sono garantiti come thread-safe.
Vedere anche
Riferimenti
Spazio dei nomi Microsoft.VisualStudio.TestTools.WebTesting