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 WEB 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);