private void CheckForNullImageUrl()

in reference-implementations/semantic-search-for-images/src/ingestion/Services/ImageService.cs [110:112]


        private void CheckForNullImageUrl(string imageUrl) {
            if(string.IsNullOrEmpty(imageUrl)) throw new ArgumentNullException(nameof(imageUrl));
        }