HttpBinding Class
Represents an extensibility element added to a Binding within an XML Web service. This class cannot be inherited.
Assembly: System.Web.Services (in System.Web.Services.dll)
The use of this class as an extensibility element specifies that information is to be passed by HTTP. For more information about specification of protocols for XML Web services, see [<topic://cpconbuildingaspnetwebservices>]. For more information about Web Services Description Language (WSDL), see the specification at http://www.w3.org/TR/wsdl/.
The following example shows a typical usage of the HttpBinding class.
// Create the 'HttpBinding' object. HttpBinding^ myHttpBinding = gcnew HttpBinding; myHttpBinding->Verb = "POST"; // Add the 'HttpBinding' to the 'Binding'. myBinding->Extensions->Add( myHttpBinding );
// Create the 'HttpBinding' object. HttpBinding* myHttpBinding = new HttpBinding(); myHttpBinding->Verb=S"POST"; // Add the 'HttpBinding' to the 'Binding'. myBinding->Extensions->Add(myHttpBinding);
System.Web.Services.Description::ServiceDescriptionFormatExtension
System.Web.Services.Description::HttpBinding
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
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.