IdentifyResult Constructors

Definition

Overloads

IdentifyResult()

Initializes a new instance of the IdentifyResult class.

IdentifyResult(Guid, IList<IdentifyCandidate>)

Initializes a new instance of the IdentifyResult class.

IdentifyResult()

Source:
IdentifyResult.cs

Initializes a new instance of the IdentifyResult class.

public IdentifyResult ();
Public Sub New ()

Applies to

IdentifyResult(Guid, IList<IdentifyCandidate>)

Source:
IdentifyResult.cs

Initializes a new instance of the IdentifyResult class.

public IdentifyResult (Guid faceId, System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Vision.Face.Models.IdentifyCandidate> candidates);
new Microsoft.Azure.CognitiveServices.Vision.Face.Models.IdentifyResult : Guid * System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Vision.Face.Models.IdentifyCandidate> -> Microsoft.Azure.CognitiveServices.Vision.Face.Models.IdentifyResult
Public Sub New (faceId As Guid, candidates As IList(Of IdentifyCandidate))

Parameters

faceId
Guid

FaceId of the query face

candidates
IList<IdentifyCandidate>

Identified person candidates for that face (ranked by confidence). Array size should be no larger than input maxNumOfCandidatesReturned. If no person is identified, will return an empty array.

Applies to