WebHttpElement 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
透過組態啟用端點的 WebHttpBehavior。
public ref class WebHttpElement sealed : System::ServiceModel::Configuration::BehaviorExtensionElement
public sealed class WebHttpElement : System.ServiceModel.Configuration.BehaviorExtensionElement
type WebHttpElement = class
inherit BehaviorExtensionElement
Public NotInheritable Class WebHttpElement
Inherits BehaviorExtensionElement
- 繼承
- 繼承
範例
這個範例會傳回 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();
}
}
備註
WebHttpElement 為 BehaviorExtensionElement 子型別,可透過組態用來包含端點上的 WebHttpBehavior。 搭配 WebHttpBehavior 系結使用 WebHttpBinding 時的行為會啟用 Windows Communication Foundation (WCF) 服務的 Web 程式設計模型。 請注意,WebServiceHost 會將這個行為自動加入至使用 WebHttpBinding 的端點。
建構函式
WebHttpElement() |
初始化 WebHttpElement 類別的新執行個體。 |