コード例 #1
0
 public ComponentGroupConfiguration GetConfiguration(string uid)
 {
     try
     {
         return(_componentGroupRegistryService.ReadComponentGroupConfiguration(uid));
     }
     catch (ComponentGroupNotFoundException)
     {
         HttpContext.Response.StatusCode = (int)HttpStatusCode.NotFound;
         return(null);
     }
 }
コード例 #2
0
 public ComponentGroupConfiguration GetConfiguration(string uid)
 {
     return(_componentGroupRegistryService.ReadComponentGroupConfiguration(uid));
 }