Exemple #1
0
        public async Task <HttpResponseMessage> GetByCorrelationId(string subscriptionId, string correlationId)
        {
            var json = await AzureResourceManagerUtil.GetAuditLogs(subscriptionId, correlationId);

            var response = this.Request.CreateResponse(HttpStatusCode.OK);

            response.Content = json.ToStringContent();
            return(response);
        }