BuildIt.CognitiveServices.FaceAPIV10Extensions.PersonDeleteaPersonFace C# (CSharp) Метод

PersonDeleteaPersonFace() публичный статический Метод

Delete a face from a person. Relative image for the persisted face will also be deleted. <h4>Http Method</h4> DELETE
public static PersonDeleteaPersonFace ( this operations, string personGroupId, string personId, string persistedFaceId, string subscriptionKey = default(string), string ocpApimSubscriptionKey = default(string) ) : void
operations this /// The operations group for this extension method. ///
personGroupId string /// Specifying the person group containing the target person. ///
personId string /// Specifying the person that the target persisted face belong to. ///
persistedFaceId string /// The persisted face to remove. This persistedFaceId is returned from <a /// href="/docs/services/563879b61984550e40cbbe8d/operations/563879b61984550f3039523b">Person /// - Add a Person Face</a>. ///
subscriptionKey string /// subscription key in url ///
ocpApimSubscriptionKey string /// subscription key in header ///
Результат void
            public static void PersonDeleteaPersonFace(this IFaceAPIV10 operations, string personGroupId, string personId, string persistedFaceId, string subscriptionKey = default(string), string ocpApimSubscriptionKey = default(string))
            {
                System.Threading.Tasks.Task.Factory.StartNew(s => ((IFaceAPIV10)s).PersonDeleteaPersonFaceAsync(personGroupId, personId, persistedFaceId, subscriptionKey, ocpApimSubscriptionKey), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None,  System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult();
            }