HttpRequestMessage.Method 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定要對要求 URI 執行的 HTTP 方法。
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
屬性值
要對要求 URI 執行的 HTTP 方法。
備註
標準 HTTP 方法包括 CONNECT、DELETE、GET、HEAD、OPTIONS、POST、PUT 和 TRACE。