Udostępnij za pośrednictwem


Binding.Type Właściwość

Definicja

Pobiera lub ustawia wartość reprezentującą kwalifikowaną nazwę PortType przestrzeni nazw, z którą Binding jest skojarzona.

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

Wartość właściwości

Element XmlQualifiedName , PortType z którym Binding jest skojarzony element .

Przykłady

W poniższym przykładzie pokazano użycie Type właściwości .

// Pass the name of the existing porttype 'MathServiceSoap' and the Xml targetNamespace attribute of the Descriptions tag.
myBinding->Type = gcnew XmlQualifiedName( "MathServiceSoap",myServiceDescription->TargetNamespace );
// Pass the name of the existing porttype 'MathServiceSoap' and the Xml targetNamespace attribute of the Descriptions tag.
myBinding.Type = new XmlQualifiedName("MathServiceSoap",myServiceDescription.TargetNamespace);
' Pass the name of the existing porttype 'MathServiceSoap' and the Xml targetNamespace attribute of the Descriptions tag.
myBinding.Type = New XmlQualifiedName("MathServiceSoap", myServiceDescription.TargetNamespace)

Uwagi

Wartością domyślną jest ciąg pusty ("").

Dotyczy