Class Match
Namespace: Microsoft.Azure.CognitiveServices.ContentModerator.Models
Assembly: Microsoft.Azure.CognitiveServices.Vision.ContentModerator.dll
Syntax
public class Match
Constructors
Match()
Declaration
public Match ();
Match(Nullable<Double>, Nullable<Int32>, String, IList<Nullable<Int32>>, String)
Declaration
public Match (Nullable<double> score = null, Nullable<int> matchId = null, string source = null, System.Collections.Generic.IList<Nullable<int>> tags = null, string label = null);
Parameters
|
Nullable<Double>
score
|
|
Nullable<Int32>
matchId
|
|
String
source
|
|
IList<Nullable<Int32>>
tags
|
|
String
label
|
Properties
Label
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="Label")]
public string Label { get; set; }
Property Value
|
String
|
MatchId
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="MatchId")]
public Nullable<int> MatchId { get; set; }
Property Value
|
Nullable<Int32>
|
Score
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="Score")]
public Nullable<double> Score { get; set; }
Property Value
|
Nullable<Double>
|
Source
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="Source")]
public string Source { get; set; }
Property Value
|
String
|