ExtractRegularExpression.Extract Method

Finds the text represented by the regular expression in the response and adds the value to the WebTestContext.

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

Syntax

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

Parameters

  • sender
    Type: Object

    The object that fired the event.

Remarks

If the regular expression was found or Required is set to false, e.Success is true; otherwise, e.Success is false. If the regular expression was not found and it was required, e.Message is set with a string that indicates the expression was not found. This is displayed in the Test Results pane.

.NET Framework Security

See Also

Reference

ExtractRegularExpression Class

Microsoft.VisualStudio.TestTools.WebTesting.Rules Namespace