Share via


FoundFaces Constructors

Definition

Overloads

FoundFaces()

Initializes a new instance of the FoundFaces class.

FoundFaces(Status, String, String, Nullable<Boolean>, Nullable<Int32>, IList<KeyValuePair>, IList<Face>)

Initializes a new instance of the FoundFaces class.

FoundFaces()

Initializes a new instance of the FoundFaces class.

public FoundFaces ();
Public Sub New ()

Applies to

FoundFaces(Status, String, String, Nullable<Boolean>, Nullable<Int32>, IList<KeyValuePair>, IList<Face>)

Initializes a new instance of the FoundFaces class.

public FoundFaces (Microsoft.Azure.CognitiveServices.ContentModerator.Models.Status status = default, string trackingId = default, string cacheId = default, bool? result = default, int? count = default, System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.ContentModerator.Models.KeyValuePair> advancedInfo = default, System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.ContentModerator.Models.Face> faces = default);
new Microsoft.Azure.CognitiveServices.ContentModerator.Models.FoundFaces : Microsoft.Azure.CognitiveServices.ContentModerator.Models.Status * string * string * Nullable<bool> * Nullable<int> * System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.ContentModerator.Models.KeyValuePair> * System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.ContentModerator.Models.Face> -> Microsoft.Azure.CognitiveServices.ContentModerator.Models.FoundFaces
Public Sub New (Optional status As Status = Nothing, Optional trackingId As String = Nothing, Optional cacheId As String = Nothing, Optional result As Nullable(Of Boolean) = Nothing, Optional count As Nullable(Of Integer) = Nothing, Optional advancedInfo As IList(Of KeyValuePair) = Nothing, Optional faces As IList(Of Face) = Nothing)

Parameters

status
Status

The evaluate status

trackingId
String

The tracking id.

cacheId
String

The cache id.

result
Nullable<Boolean>

True if result was found.

count
Nullable<Int32>

Number of faces found.

advancedInfo
IList<KeyValuePair>

The advanced info.

faces
IList<Face>

The list of faces.

Applies to