HttpRequestMessageProperty.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

示例

HttpRequestMessageProperty reqProps = new HttpRequestMessageProperty();
reqProps.SuppressEntityBody = false;
Dim reqProps As New HttpRequestMessageProperty()
reqProps.SuppressEntityBody = False

注解

此属性用于空消息请求:例如,接受无消息正文的 GET 请求的服务。 在这种情况下,生成响应消息的 HttpRequestMessageProperty 对象时,请将 SuppressEntityBody 属性设置为 true

与非 WCF 服务互操作时,请务必注意,根据 HTTP 标准,某些谓词应包含消息正文;其中包括 PUT 和 POST。 而有些谓词应不含消息正文;这些谓词包括 GET 和 HEAD。

适用于