次の方法で共有


Person コンストラクター

定義

オーバーロード

Person()

Person クラスの新しいインスタンスを初期化します。

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

Person クラスの新しいインスタンスを初期化します。

Person()

ソース:
Person.cs

Person クラスの新しいインスタンスを初期化します。

public Person ();
Public Sub New ()

適用対象

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

ソース:
Person.cs

Person クラスの新しいインスタンスを初期化します。

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)

パラメーター

personId
Guid

対象の顔リストの PersonId。

name
String

ユーザー定義の名前。最大長は 128 です。

userData
String

ユーザーが指定したデータ。 長さは 16 KB を超えないようにしてください。

persistedFaceIds
IList<Guid>

ユーザーに登録されている顔の PersistedFaceIds。 これらの persistedFaceId は、Person - Add a Person Face から返され、有効期限は切れなくなります。

適用対象