共用方式為


HttpResponseMessageProperty.SuppressEntityBody 屬性

定義

取得或設定值,這個值指出是否要忽略訊息本文及傳送空的訊息。

public:
 property bool SuppressEntityBody { bool get(); void set(bool value); };
public bool SuppressEntityBody { get; set; }
member this.SuppressEntityBody : bool with get, set
Public Property SuppressEntityBody As Boolean

屬性值

如果要隱藏訊息本文則為 true,否則為 false。 預設為 false

範例

以下會示範如何隱藏訊息本文:

// A value of true suppresses the message body.
responseProperty.SuppressEntityBody =  true;

備註

這個屬性是用於空的訊息回應,例如,接受 POST 要求及傳回不含任何訊息本文之回應的服務,且 StatusCode = 200,而 StatusDescription = OK。 與這個回應相關聯的 HttpResponseMessageProperty 會將這個屬性設定為 true

適用於