WebTestPlugin.PrePage Method
When overridden in a derived class, represents the method that will handle the event associated with the start of a Web page.
Namespace: Microsoft.VisualStudio.TestTools.WebTesting
Assembly: Microsoft.VisualStudio.QualityTools.WebTestFramework (in Microsoft.VisualStudio.QualityTools.WebTestFramework.dll)
Syntax
'Declaration
Public Overridable Sub PrePage ( _
sender As Object, _
e As PrePageEventArgs _
)
public virtual void PrePage(
Object sender,
PrePageEventArgs e
)
public:
virtual void PrePage(
Object^ sender,
PrePageEventArgs^ e
)
abstract PrePage :
sender:Object *
e:PrePageEventArgs -> unit
override PrePage :
sender:Object *
e:PrePageEventArgs -> unit
public function PrePage(
sender : Object,
e : PrePageEventArgs
)
Parameters
sender
Type: ObjectThe source of the event.
e
Type: Microsoft.VisualStudio.TestTools.WebTesting.PrePageEventArgsA PrePageEventArgs that contains the event data.
Remarks
The PrePage callback is called just before the primary request for a page is run. This enables outside code to effect the request.
Because this method is virtual, the author of the WebTestPlugin can decide whether to implement it. If it is not implemented, the base class implementation is called, but it does nothing other than to return immediately.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.