WebScriptEnablingElement Constructor

Definition

Initializes a new instance of the WebScriptEnablingElement class.

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

Examples

The following sample returns the 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();  
        }  
    }  

Applies to