Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Verifies that the specified string matches the regular expression.
Namespace: Microsoft.VisualStudio.TestTools.UnitTesting
Assembly: Microsoft.VisualStudio.QualityTools.UnitTestFramework (in Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll)
Syntax
'Declaration
Public Shared Sub Matches ( _
value As String, _
pattern As Regex _
)
public static void Matches(
string value,
Regex pattern
)
public:
static void Matches(
String^ value,
Regex^ pattern
)
static member Matches :
value:string *
pattern:Regex -> unit
public static function Matches(
value : String,
pattern : Regex
)
Parameters
- value
Type: System.String
The string that is expected to match pattern.
- pattern
Type: System.Text.RegularExpressions.Regex
The regular expression that value is expected to match.
Exceptions
Exception | Condition |
---|---|
AssertFailedException | value does not match pattern. |
Remarks
The assertion fails if the string does not match the expression.
.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.