Dela via


LargePersonGroupClient.UpdatePerson Method

Definition

[Protocol Method] Please refer to https://learn.microsoft.com/rest/api/face/person-group-operations/update-large-person-group-person for more details.

  • This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
public virtual Azure.Response UpdatePerson (Guid personId, Azure.Core.RequestContent content, Azure.RequestContext context = default);
abstract member UpdatePerson : Guid * Azure.Core.RequestContent * Azure.RequestContext -> Azure.Response
override this.UpdatePerson : Guid * Azure.Core.RequestContent * Azure.RequestContext -> Azure.Response
Public Overridable Function UpdatePerson (personId As Guid, content As RequestContent, Optional context As RequestContext = Nothing) As Response

Parameters

personId
Guid

ID of the person.

content
RequestContent

The content to send as the body of the request.

context
RequestContext

The request context, which can override default behaviors of the client pipeline on a per-call basis.

Returns

The response returned from the service.

Exceptions

content is null.

Service returned a non-success status code.

Examples

This sample shows how to call UpdatePerson.

Uri endpoint = new Uri("<endpoint>");
AzureKeyCredential credential = new AzureKeyCredential("<key>");
LargePersonGroupClient client = new FaceAdministrationClient(endpoint, credential).GetLargePersonGroupClient("your_large_person_group_id");

using RequestContent content = RequestContent.Create(new
{
    name = "your_large_person_group_person_name",
    userData = "your_user_data",
});
Response response = client.UpdatePerson(Guid.Parse("25985303-c537-4467-b41d-bdb45cd95ca1"), content);

Console.WriteLine(response.Status);

Applies to