WebHttpBehavior.HelpEnabled Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit une valeur qui détermine si la page d’aide WCF est activée.
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
Valeur de propriété
true
Si la page WCFHelp est activée ; Sinon, false
.
Remarques
Pour plus d’informations sur la page d’aide WCF REST, consultez la page d’aide du service http Web WCF.
Pour activer l'attribut helpEnabled dans un fichier de configuration :
<system.serviceModel>
<behaviors>
<endpointBehaviors>
<behavior name="MyEndpointBehavior">
<webHttp helpEnabled="true" />
</behavior>
</endpointBehaviors>
</system.serviceModel>
Pour activer la propriété HelpEnabled par programmation :
WebHttpBehavior helpBehavior = new WebHttpBehavior();
helpBehavior.HelpEnabled = true;
host.Description.Endpoints[0].Behaviors.Add(helpBehavior);