Compartilhar via


ServiceDescription.Namespace Campo

Definição

O namespace de XML no qual a classe ServiceDescription é definida ("http://schemas.xmlsoap.org/wsdl/"). Este campo é constante.

public: System::String ^ Namespace;
public const string Namespace;
val mutable Namespace : string
Public Const Namespace As String 

Valor do campo

String

Exemplos

ServiceDescription^ myDescription = 
   ServiceDescription::Read( "MyWsdl_CS.wsdl" );
Console::WriteLine( "Namespace : " + ServiceDescription::Namespace );
ServiceDescription myDescription =
   ServiceDescription.Read("MyWsdl_CS.wsdl");
Console.WriteLine("Namespace: " + ServiceDescription.Namespace);
Dim myDescription As ServiceDescription = _
   ServiceDescription.Read("MyWsdl_VB.wsdl")
Console.WriteLine("Namespace: " & ServiceDescription.Namespace)

Aplica-se a