HttpRequestMessage.Method Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.