SoapServices.CodeXmlNamespaceForClrTypeNamespace(String, String) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
제공된 네임스페이스와 어셈블리 이름에서 가져온 공용 언어 런타임 형식 네임스페이스 이름을 반환합니다.
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
코딩할 어셈블리 이름입니다.
반환
제공된 네임스페이스와 어셈블리 이름에서 가져온 공용 언어 런타임 형식 네임스페이스 이름입니다.
- 특성
예외
assemblyName
및 typeNamespace
매개 변수가 모두 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)합니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET