private void CheckForNullText()

in reference-implementations/semantic-search-for-images/src/ui-backend/Services/ImageService.cs [98:100]


        private void CheckForNullText(string text) {
            if(string.IsNullOrEmpty(text)) throw new ArgumentNullException(nameof(text));
        }