Port.Binding-Eigenschaft
Ruft den Wert des XML-<binding>-Attributs des Port ab oder legt diesen fest.
Namespace: System.Web.Services.Description
Assembly: System.Web.Services (in system.web.services.dll)
Syntax
'Declaration
Public Property Binding As XmlQualifiedName
'Usage
Dim instance As Port
Dim value As XmlQualifiedName
value = instance.Binding
instance.Binding = value
public XmlQualifiedName Binding { get; set; }
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)
Eigenschaftenwert
Ein XmlQualifiedName.
Hinweise
Eine Bindung definiert Einzelheiten des Meldungsformats und Protokolls für Operationen und Meldungen eines PortType. Diese Eigenschaft ruft diese Werte für einen bestimmten Port ab oder legt diese fest.
Beispiel
' Create a Port.
Dim postPort As New Port()
postPort.Name = "PortServiceHttpPost"
postPort.Binding = New XmlQualifiedName("s0:PortServiceHttpPost")
// Create a Port.
Port postPort = new Port();
postPort.Name = "PortServiceHttpPost";
postPort.Binding = new XmlQualifiedName("s0:PortServiceHttpPost");
// 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"));
Plattformen
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 unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
Siehe auch
Referenz
Port-Klasse
Port-Member
System.Web.Services.Description-Namespace