다음을 통해 공유


SoapServices.CodeXmlNamespaceForClrTypeNamespace(String, String) 메서드

정의

제공된 네임스페이스와 어셈블리 이름에서 가져온 공용 언어 런타임 형식 네임스페이스 이름을 반환합니다.

public:
 static System::String ^ CodeXmlNamespaceForClrTypeNamespace(System::String ^ typeNamespace, System::String ^ assemblyName);
public static string CodeXmlNamespaceForClrTypeNamespace (string typeNamespace, string assemblyName);
[System.Security.SecurityCritical]
public static string CodeXmlNamespaceForClrTypeNamespace (string typeNamespace, string assemblyName);
static member CodeXmlNamespaceForClrTypeNamespace : string * string -> string
[<System.Security.SecurityCritical>]
static member CodeXmlNamespaceForClrTypeNamespace : string * string -> string
Public Shared Function CodeXmlNamespaceForClrTypeNamespace (typeNamespace As String, assemblyName As String) As String

매개 변수

typeNamespace
String

코딩할 네임스페이스입니다.

assemblyName
String

코딩할 어셈블리 이름입니다.

반환

제공된 네임스페이스와 어셈블리 이름에서 가져온 공용 언어 런타임 형식 네임스페이스 이름입니다.

특성

예외

assemblyNametypeNamespace 매개 변수가 모두 null이거나 비어 있는 경우

직접 실행 호출자에 인프라 권한이 없는 경우

예제

다음 코드 예제에서는 이 메서드를 사용하는 방법을 보여 줍니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 SoapServices 클래스입니다.

// Convert a CLR namespace and assembly name into an XML namespace.
String^ xmlNamespace = SoapServices::CodeXmlNamespaceForClrTypeNamespace(
   L"ExampleNamespace", L"AssemblyName" );
Console::WriteLine( L"The name of the XML namespace is {0}.", xmlNamespace );
// Convert a CLR namespace and assembly name into an XML namespace.
string xmlNamespace = 
    SoapServices.CodeXmlNamespaceForClrTypeNamespace(
    "ExampleNamespace", "AssemblyName");
Console.WriteLine("The name of the XML namespace is {0}.", 
    xmlNamespace);

설명

현재 메서드는 공용 언어 런타임 개체 형식에 대 한 XML 네임 스페이스 이름을 만들 수는.NET Framework 및 SoapSuds 도구 사용 됩니다.

SoapSuds에 대 한 자세한 내용은 참조 하세요. Soapsuds 도구 (Soapsuds.exe)합니다.

적용 대상