Share via


HttpActionContext.Response Property

 

Gets or sets the response message for the action context.

Namespace:   System.Web.Http.Controllers
Assembly:  System.Web.Http (in System.Web.Http.dll)

Syntax

public HttpResponseMessage Response {
    [CompilerGeneratedAttribute]
    get;
    [CompilerGeneratedAttribute]
    set;
}
public:
property HttpResponseMessage^ Response {
    [CompilerGeneratedAttribute]
    HttpResponseMessage^ get();
    [CompilerGeneratedAttribute]
    void set(HttpResponseMessage^ value);
}
member Response : HttpResponseMessage with get, set
Public Property Response As HttpResponseMessage

Property Value

Type: System.Net.Http.HttpResponseMessage

The response message for the action context.

See Also

HttpActionContext Class
System.Web.Http.Controllers Namespace

Return to top