다음을 통해 공유


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.

적용 대상