ServiceDescription.Namespace Campo
Definição
O namespace de XML no qual a classe ServiceDescription é definida ("http://schemas.xmlsoap.org/wsdl/").The XML namespace in which the ServiceDescription class is defined ("http://schemas.xmlsoap.org/wsdl/"). Este campo é constante.This field is constant.
public: System::String ^ Namespace;
public const string Namespace;
val mutable Namespace : string
Public Const Namespace As String
Valor do campo
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)