Condividi tramite


RestResponseRegex Constructors

Definition

Overloads

RestResponseRegex()

Initializes a new instance of the RestResponseRegex class.

RestResponseRegex(IList<String>, Nullable<RestMatchQuantifier>)

Initializes a new instance of the RestResponseRegex class.

RestResponseRegex()

Initializes a new instance of the RestResponseRegex class.

public RestResponseRegex ();
Public Sub New ()

Applies to

RestResponseRegex(IList<String>, Nullable<RestMatchQuantifier>)

Initializes a new instance of the RestResponseRegex class.

public RestResponseRegex (System.Collections.Generic.IList<string> matches = default, Microsoft.Azure.Management.DeploymentManager.Models.RestMatchQuantifier? matchQuantifier = default);
new Microsoft.Azure.Management.DeploymentManager.Models.RestResponseRegex : System.Collections.Generic.IList<string> * Nullable<Microsoft.Azure.Management.DeploymentManager.Models.RestMatchQuantifier> -> Microsoft.Azure.Management.DeploymentManager.Models.RestResponseRegex
Public Sub New (Optional matches As IList(Of String) = Nothing, Optional matchQuantifier As Nullable(Of RestMatchQuantifier) = Nothing)

Parameters

matches
IList<String>

The list of regular expressions.

matchQuantifier
Nullable<RestMatchQuantifier>

Indicates whether any or all of the expressions should match with the response content. Possible values include: 'All', 'Any'

Applies to