Binding.Type Eigenschap

Definitie

Hiermee haalt u een waarde op die de naamruimte-gekwalificeerde naam vertegenwoordigt van de PortType naamruimte waarmee de Binding naam is gekoppeld.

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

Waarde van eigenschap

Een XmlQualifiedName van de PortType waaraan de Binding gekoppelde is.

Voorbeelden

In het volgende voorbeeld ziet u het gebruik van de Type eigenschap.

// 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)

Opmerkingen

De standaardwaarde is een lege tekenreeks ("").

Van toepassing op