HttpBinding クラス
アセンブリ: System.Web.Services (system.web.services.dll 内)


このクラスを機能拡張要素として使用して、情報を HTTP によって渡すことを指定します。XML Web サービスのプロトコルの指定の詳細については、「ASP.NET を使用した XML Web サービス」を参照してください。WSDL (Web Services Description Language) の詳細については、http://www.w3.org/TR/wsdl/ の仕様を参照してください。

HttpBinding クラスの一般的な使用例を次に示します。
' Create the 'HttpBinding' object. Dim myHttpBinding As New HttpBinding() myHttpBinding.Verb = "POST" ' Add the 'HttpBinding' to the 'Binding'. myBinding.Extensions.Add(myHttpBinding)
// Create the 'HttpBinding' object. HttpBinding myHttpBinding = new HttpBinding(); myHttpBinding.Verb="POST"; // Add the 'HttpBinding' to the 'Binding'. myBinding.Extensions.Add(myHttpBinding);

System.Web.Services.Description.ServiceDescriptionFormatExtension
System.Web.Services.Description.HttpBinding


Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


- HttpBinding クラスのページへのリンク