WebScriptEnablingElement.BehaviorType 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 le type du comportement activé par cet élément de configuration.
public:
virtual property Type ^ BehaviorType { Type ^ get(); };
public override Type BehaviorType { get; }
member this.BehaviorType : Type
Public Overrides ReadOnly Property BehaviorType As Type
Valeur de propriété
Type correspondant au comportement activé avec l'élément de configuration : WebScriptEnablingBehavior.
Exemples
L'exemple suivant retourne le type WebScriptEnablingBehavior.
using System;
using System.ServiceModel;
using System.ServiceModel.Web;
using System.ServiceModel.Configuration;
class Program
{
static void Main(string[] args)
{
WebScriptEnablingElement wSEB = new WebScriptEnablingElement();
Console.WriteLine("The type is: {0}",wSEB.BehaviorType );
Console.WriteLine("Press <ENTER> to terminate the program.");
Console.ReadLine();
}
}