Exemple #1
0
        public async System.Threading.Tasks.Task <Microsoft.AspNetCore.Mvc.IActionResult> ConfigurationsGet(string policyId)
        {
            var result = await _implementation.ConfigurationsGetAsync(policyId).ConfigureAwait(false);

            var status = result.StatusCode;

            Microsoft.AspNetCore.Mvc.ObjectResult response = new Microsoft.AspNetCore.Mvc.ObjectResult(result.Result)
            {
                StatusCode = status
            };

            foreach (var header in result.Headers)
            {
                Request.HttpContext.Response.Headers.Add(header.Key, new Microsoft.Extensions.Primitives.StringValues(header.Value.ToArray()));
            }

            return(response);
        }
Exemple #2
0
 public System.Threading.Tasks.Task <System.Collections.Generic.ICollection <Anonymous2> > ConfigurationsGet(string policyId)
 {
     return(_implementation.ConfigurationsGetAsync(policyId));
 }