HttpRequestMessage.Method Property

Definition

Gets or sets the HTTP method to be performed on the request URI.

public:
 property HttpMethod ^ Method { HttpMethod ^ get(); void set(HttpMethod ^ value); };
HttpMethod Method();

void Method(HttpMethod value);
public HttpMethod Method { get; set; }
var httpMethod = httpRequestMessage.method;
httpRequestMessage.method = httpMethod;
Public Property Method As HttpMethod

Property Value

The HTTP method to be performed on the request URI.

Remarks

The standard HTTP methods include CONNECT, DELETE, GET, HEAD, OPTIONS, POST, PUT, and TRACE.

Applies to