共用方式為


WebHttpElement 建構函式

定義

初始化 WebHttpElement 類別的新執行個體。

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

備註

這個範例會傳回 WebHttpElement 型別。

using System;  
using System.ServiceModel;  
using System.ServiceModel.Web;  
using System.ServiceModel.Configuration;  

    class Program  
    {  
        static void Main(string[] args)  
        {  
            WebHttpElement webHttpElement = new WebHttpElement();  
            Console.WriteLine("The type is: {0}", webHttpElement.BehaviorType);  
            Console.WriteLine("Press <ENTER> to terminate the program.");  
            Console.ReadLine();  
        }  
    }  

適用於