Freigeben über


WebScriptEnablingElement.BehaviorType Eigenschaft

Definition

Ruft den Typ des durch dieses Konfigurationselement aktivierten Verhaltens ab.

public:
 virtual property Type ^ BehaviorType { Type ^ get(); };
public override Type BehaviorType { get; }
member this.BehaviorType : Type
Public Overrides ReadOnly Property BehaviorType As Type

Eigenschaftswert

Type

Der Type für das durch das Konfigurationselement aktivierte Verhalten: WebScriptEnablingBehavior.

Beispiele

Im folgenden Beispiel wird der Typ WebScriptEnablingBehavior zurückgegeben.

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

Gilt für