WebHttpBehavior.HelpEnabled 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
WCF 도움말 페이지를 사용할 수 있는지 여부를 결정하는 값을 가져오거나 설정합니다.
public:
virtual property bool HelpEnabled { bool get(); void set(bool value); };
public virtual bool HelpEnabled { get; set; }
member this.HelpEnabled : bool with get, set
Public Overridable Property HelpEnabled As Boolean
속성 값
true
WCFHelp 페이지를 사용 하면 그렇지 않으면 false
합니다.
설명
WCF REST 도움말 페이지에 대 한 자세한 내용은 참조 하세요. WCF 웹 HTTP 서비스 도움말 페이지합니다.
구성 파일에서 helpEnabled 특성을 설정하려면
<system.serviceModel>
<behaviors>
<endpointBehaviors>
<behavior name="MyEndpointBehavior">
<webHttp helpEnabled="true" />
</behavior>
</endpointBehaviors>
</system.serviceModel>
프로그래밍 방식으로 HelpEnabled 속성을 설정하려면
WebHttpBehavior helpBehavior = new WebHttpBehavior();
helpBehavior.HelpEnabled = true;
host.Description.Endpoints[0].Behaviors.Add(helpBehavior);