Port.Binding 속성

정의

Port의 XML <binding> 특성 값을 가져오거나 설정합니다.

public:
 property System::Xml::XmlQualifiedName ^ Binding { System::Xml::XmlQualifiedName ^ get(); void set(System::Xml::XmlQualifiedName ^ value); };
public System.Xml.XmlQualifiedName Binding { get; set; }
member this.Binding : System.Xml.XmlQualifiedName with get, set
Public Property Binding As XmlQualifiedName

속성 값

XML 바인딩의 값입니다.

예제

// Create a Port.
Port^ postPort = gcnew Port;
postPort->Name = "PortServiceHttpPost";
postPort->Binding = gcnew XmlQualifiedName( "s0:PortServiceHttpPost" );
// Create a Port.
Port postPort = new Port();
postPort.Name = "PortServiceHttpPost";
postPort.Binding = new XmlQualifiedName("s0:PortServiceHttpPost");

' Create a Port.
Dim postPort As New Port()
postPort.Name = "PortServiceHttpPost"
postPort.Binding = New XmlQualifiedName("s0:PortServiceHttpPost")

설명

바인딩 작업에 대 한 메시지 형식 및 프로토콜 세부 정보를 정의 및 메시지는 PortType합니다. 이 속성을 특정 값을 해당 값을 가져오거나 설정 합니다. Port합니다.

적용 대상