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

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

Delete an Image from your image 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 ImageDelete ( this operations, string listId, string imageId, string subscriptionKey = default(string), string ocpApimSubscriptionKey = default(string) ) : void
operations this /// The operations group for this extension method. ///
listId string ///
imageId string ///
subscriptionKey string /// subscription key in url ///
ocpApimSubscriptionKey string /// subscription key in header ///
Результат void
            public static void ImageDelete(this IContentModeratorListManagement operations, string listId, string imageId, string subscriptionKey = default(string), string ocpApimSubscriptionKey = default(string))
            {
                System.Threading.Tasks.Task.Factory.StartNew(s => ((IContentModeratorListManagement)s).ImageDeleteAsync(listId, imageId, subscriptionKey, ocpApimSubscriptionKey), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None,  System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult();
            }