AspNetFrameworksPerformance.Controllers.WebApiPerformanceController.HelloWorldCode C# (CSharp) Method

HelloWorldCode() private method

private HelloWorldCode ( ) : HttpResponseMessage
return System.Net.Http.HttpResponseMessage
        public HttpResponseMessage HelloWorldCode()
        {
            string output = "Hello cruel World. " + DateTime.Now.ToString();
            return new HttpResponseMessage(HttpStatusCode.OK) { Content = new StringContent(output, Encoding.UTF8, "text/plain") };
        }