BuildIt.CognitiveServices.ContentModeratorListManagementExtensions.ImageDeleteallImages C# (CSharp) Метод

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

Delete all images from your list. The image list can be used to do fuzzy matching against other images when using Image/Match API. Note: Remember to call <a href="https://wabashcognitiveservices.portal.azure-api.net/docs/services/57cf755e3f9b070c105bd2c2/operations/57cf755e3f9b070868a1f677">Refresh Search Index</a> for this list before you want to use it on the Image/Match API
public static ImageDeleteallImages ( this operations, string listId, string subscriptionKey = default(string), string ocpApimSubscriptionKey = default(string) ) : void
operations this /// The operations group for this extension method. ///
listId string ///
subscriptionKey string /// subscription key in url ///
ocpApimSubscriptionKey string /// subscription key in header ///
Результат void
            public static void ImageDeleteallImages(this IContentModeratorListManagement operations, string listId, string subscriptionKey = default(string), string ocpApimSubscriptionKey = default(string))
            {
                System.Threading.Tasks.Task.Factory.StartNew(s => ((IContentModeratorListManagement)s).ImageDeleteallImagesAsync(listId, subscriptionKey, ocpApimSubscriptionKey), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None,  System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult();
            }