共用方式為


WebHttpBehavior.HelpEnabled 屬性

定義

取得或設定值,這個值會判斷是否已啟用 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

屬性值

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

適用於