Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How do you construct HtmlResponseMessage?

Answer Posted / nirav desai

Following is the way to construct to do so,

public class TestController : ApiController
{
public HttpResponseMessage Get()
{
HttpResponseMessage response = Request.CreateResponse(HttpStatusCode.OK, "value");
response.Content = new StringContent("Testing", Encoding.Unicode);
response.Headers.CacheControl = new CacheControlHeaderValue()
{
MaxAge = TimeSpan.FromMinutes(20)
};
return response;
}
}

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Securitywise What are the Enhancements in 2.0?

1895


What is the use of view state?

904


What is a ashx file?

1053


If 200 is for all successful operation then why do we have 201 response codes?

875


there is two functions function a and function b like fun a(){.... ..... } fun b() { } in function b i write the coding to add two numbers and i need to dispaly the sum result in function a with out using global variable. how we do?

2937


What is the namespace to create thread in .net?

915


What is strong-typing versus weak-typing?

1068


What is difference between viewstate and session state in javascript?

1061


How to find out what version of asp.net I am using on my machine?

1063


What is the difference between WindowsDefaultLocation and WindowsDefaultBounds?

1127


What is base class of .net?

921


Where session id is stored?

941


Why do we need url encoding?

930


What is http protocol and how it works?

983


What threading model used in asp and asp.net?

1025