WebHttpElement Class
Enables the WebHttpBehavior for an endpoint through configuration.
Assembly: System.ServiceModel.Web (in System.ServiceModel.Web.dll)
The WebHttpElement is a BehaviorExtensionElement sub-type that can be used to include the WebHttpBehavior on an endpoint through configuration. The WebHttpBehavior behavior, when used in conjunction with the WebHttpBinding binding, enables the Web programming model for a Windows Communication Foundation (WCF) service. Note that the WebServiceHost automatically adds this behavior to endpoints that use the WebHttpBinding.
This sample returns the type 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();
}
}
System.Configuration.ConfigurationElement
System.ServiceModel.Configuration.ServiceModelExtensionElement
System.ServiceModel.Configuration.BehaviorExtensionElement
System.ServiceModel.Configuration.WebHttpElement
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.