Share via


WebTestPlugin.PreRequestDataBinding Method

When overridden in a derived class, represents the method that will handle the event associated with the start of a databinding call.

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

Syntax

'Declaration
Public Overridable Sub PreRequestDataBinding ( _
    sender As Object, _
    e As PreRequestDataBindingEventArgs _
)
public virtual void PreRequestDataBinding(
    Object sender,
    PreRequestDataBindingEventArgs e
)
public:
virtual void PreRequestDataBinding(
    Object^ sender, 
    PreRequestDataBindingEventArgs^ e
)
abstract PreRequestDataBinding : 
        sender:Object * 
        e:PreRequestDataBindingEventArgs -> unit  
override PreRequestDataBinding : 
        sender:Object * 
        e:PreRequestDataBindingEventArgs -> unit
public function PreRequestDataBinding(
    sender : Object, 
    e : PreRequestDataBindingEventArgs
)

Parameters

  • sender
    Type: Object

    The source of the event.

Remarks

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

See Also

Reference

WebTestPlugin Class

Microsoft.VisualStudio.TestTools.WebTesting Namespace