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

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

Delete an existing face list according to faceListId. Persisted face images in the face list will also be deleted. <h4>Http Method</h4> DELETE
public static FaceListDeleteaFaceList ( this operations, string faceListId, string subscriptionKey = default(string), string ocpApimSubscriptionKey = default(string) ) : void
operations this /// The operations group for this extension method. ///
faceListId string /// Valid character is letter in lower case or digit or '-' or '_', maximum /// length is 64. ///
subscriptionKey string /// subscription key in url ///
ocpApimSubscriptionKey string /// subscription key in header ///
Результат void
            public static void FaceListDeleteaFaceList(this IFaceAPIV10 operations, string faceListId, string subscriptionKey = default(string), string ocpApimSubscriptionKey = default(string))
            {
                System.Threading.Tasks.Task.Factory.StartNew(s => ((IFaceAPIV10)s).FaceListDeleteaFaceListAsync(faceListId, subscriptionKey, ocpApimSubscriptionKey), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None,  System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult();
            }