예제 #1
0
        public ActionResult <IDictionary <long, string> > Get([FromQuery(Name = "apikey")] string apikey)
        {
            if (!ActiveClientStorage.IsClientAccepted(apikey))
            {
                return(Forbid());
            }

            return(ImageStorage.GetImages());
        }