MatchResponse Constructors

Definition

Overloads

MatchResponse()

Initializes a new instance of the MatchResponse class.

MatchResponse(String, String, Nullable<Boolean>, IList<Match>, Status)

Initializes a new instance of the MatchResponse class.

MatchResponse()

Initializes a new instance of the MatchResponse class.

public MatchResponse ();
Public Sub New ()

Applies to

MatchResponse(String, String, Nullable<Boolean>, IList<Match>, Status)

Initializes a new instance of the MatchResponse class.

public MatchResponse (string trackingId = default, string cacheID = default, bool? isMatch = default, System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.ContentModerator.Models.Match> matches = default, Microsoft.Azure.CognitiveServices.ContentModerator.Models.Status status = default);
new Microsoft.Azure.CognitiveServices.ContentModerator.Models.MatchResponse : string * string * Nullable<bool> * System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.ContentModerator.Models.Match> * Microsoft.Azure.CognitiveServices.ContentModerator.Models.Status -> Microsoft.Azure.CognitiveServices.ContentModerator.Models.MatchResponse
Public Sub New (Optional trackingId As String = Nothing, Optional cacheID As String = Nothing, Optional isMatch As Nullable(Of Boolean) = Nothing, Optional matches As IList(Of Match) = Nothing, Optional status As Status = Nothing)

Parameters

trackingId
String

The tracking id.

cacheID
String

The cache id.

isMatch
Nullable<Boolean>

Indicates if there is a match.

matches
IList<Match>

The match details.

status
Status

The evaluate status

Applies to