WebScriptEnablingElement Konstruktor

Definicja

Inicjuje nowe wystąpienie klasy WebScriptEnablingElement.

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

Przykłady

Poniższy przykład zwraca typ 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();  
        }  
    }  

Dotyczy