Port.Binding Property
.NET Framework 2.0
Gets or sets the value of the XML <binding> attribute of the Port.
Namespace: System.Web.Services.Description
Assembly: System.Web.Services (in system.web.services.dll)
Assembly: System.Web.Services (in system.web.services.dll)
public: property XmlQualifiedName^ Binding { XmlQualifiedName^ get (); void set (XmlQualifiedName^ value); }
/** @property */ public XmlQualifiedName get_Binding () /** @property */ public void set_Binding (XmlQualifiedName value)
public function get Binding () : XmlQualifiedName public function set Binding (value : XmlQualifiedName)
Not applicable.
Property Value
An XmlQualifiedName.A binding defines message format and protocol details for operations and messages for a PortType. This property gets or sets those values for a specific Port.
// Create a Port. Port^ postPort = gcnew Port; postPort->Name = "PortServiceHttpPost"; postPort->Binding = gcnew XmlQualifiedName( "s0:PortServiceHttpPost" );
// Create a Port.
Port postPort = new Port();
postPort.set_Name("PortServiceHttpPost");
postPort.set_Binding(
new XmlQualifiedName("s0:PortServiceHttpPost"));
Windows 98, Windows Server 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
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: