Share via


WebScriptEnablingElement Oluşturucu

Tanım

WebScriptEnablingElement sınıfının yeni bir örneğini başlatır.

public:
 WebScriptEnablingElement();
public WebScriptEnablingElement ();
Public Sub New ()

Örnekler

Aşağıdaki örnek türünü WebScriptEnablingBehaviordöndürür.

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

Şunlara uygulanır