다음을 통해 공유


ServiceDescription.Namespace 필드

정의

ServiceDescription 클래스가 정의된 XML 네임스페이스입니다(“http://schemas.xmlsoap.org/wsdl/”). 이 필드는 상수입니다.

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

필드 값

String

예제

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)

적용 대상