Person Constructors

Definition

Overloads

Person()

Initializes a new instance of the Person class.

Person(Guid, String, String, IList<Guid>)

Initializes a new instance of the Person class.

Person()

Source:
Person.cs

Initializes a new instance of the Person class.

public Person ();
Public Sub New ()

Applies to

Person(Guid, String, String, IList<Guid>)

Source:
Person.cs

Initializes a new instance of the Person class.

public Person (Guid personId, string name = default, string userData = default, System.Collections.Generic.IList<Guid> persistedFaceIds = default);
new Microsoft.Azure.CognitiveServices.Vision.Face.Models.Person : Guid * string * string * System.Collections.Generic.IList<Guid> -> Microsoft.Azure.CognitiveServices.Vision.Face.Models.Person
Public Sub New (personId As Guid, Optional name As String = Nothing, Optional userData As String = Nothing, Optional persistedFaceIds As IList(Of Guid) = Nothing)

Parameters

personId
Guid

PersonId of the target face list.

name
String

User defined name, maximum length is 128.

userData
String

User specified data. Length should not exceed 16KB.

persistedFaceIds
IList<Guid>

PersistedFaceIds of registered faces in the person. These persistedFaceIds are returned from Person - Add a Person Face, and will not expire.

Applies to