PostWebTestRecordingEventArgs.RecordedWebTestModified Property

Gets or sets the indication that a plug-in modified the contents of the recorded Web performance test in the event handler.

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

Syntax

'Declaration
Public Property RecordedWebTestModified As Boolean
public bool RecordedWebTestModified { get; set; }
public:
property bool RecordedWebTestModified {
    bool get ();
    void set (bool value);
}
member RecordedWebTestModified : bool with get, set
function get RecordedWebTestModified () : boolean
function set RecordedWebTestModified (value : boolean)

Property Value

Type: System.Boolean
true if the RecordedWebTest was modified in the WebTestRecorderPlugin event handler; otherwise, false.

Remarks

If user code modifies the contents of the RecordedWebTest in the WebTestRecorderPlugin event handler, RecordedWebTestModified must be set to true in the WebTestRecorderPlugin event handler.

.NET Framework Security

See Also

Reference

PostWebTestRecordingEventArgs Class

Microsoft.VisualStudio.TestTools.WebTesting Namespace

Other Resources

How to: Create a Recorder Plug-In