BuildIt.CognitiveServices.FaceAPIV10Extensions.PersonDeleteaPersonAsync C# (CSharp) Method

PersonDeleteaPersonAsync() public static method

Delete an existing person from a person group. Persisted face images of the person will also be deleted. <h4>Http Method</h4> DELETE
public static PersonDeleteaPersonAsync ( this operations, string personGroupId, string personId, string subscriptionKey = default(string), string ocpApimSubscriptionKey = default(string), System cancellationToken = default(System.Threading.CancellationToken) ) : System.Threading.Tasks.Task
operations this /// The operations group for this extension method. ///
personGroupId string /// Specifying the person group containing the person. ///
personId string /// The target personId to delete. ///
subscriptionKey string /// subscription key in url ///
ocpApimSubscriptionKey string /// subscription key in header ///
cancellationToken System /// The cancellation token. ///
return System.Threading.Tasks.Task
            public static async System.Threading.Tasks.Task PersonDeleteaPersonAsync(this IFaceAPIV10 operations, string personGroupId, string personId, string subscriptionKey = default(string), string ocpApimSubscriptionKey = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
            {
                await operations.PersonDeleteaPersonWithHttpMessagesAsync(personGroupId, personId, subscriptionKey, ocpApimSubscriptionKey, null, cancellationToken).ConfigureAwait(false);
            }