你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

LargeFaceListClient.UpdateFace(Guid, RequestContent, RequestContext) Method

Definition

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

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

Parameters

persistedFaceId
Guid

Face ID of the face.

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 UpdateFace.

Uri endpoint = new Uri("<endpoint>");
AzureKeyCredential credential = new AzureKeyCredential("<key>");
LargeFaceListClient client = new FaceAdministrationClient(endpoint, credential).GetLargeFaceListClient("your_large_face_list_id");

using RequestContent content = RequestContent.Create(new
{
    userData = "your_user_data",
});
Response response = client.UpdateFace(Guid.Parse("43897a75-8d6f-42cf-885e-74832febb055"), content);

Console.WriteLine(response.Status);

Applies to