共用方式為


SoapServices.XmlNsForClrTypeWithNsAndAssembly 屬性

定義

取得預設 XML 命名空間前置詞,其應該使用於同時擁有 Common Language Runtime 命名空間和組件的 Common Language Runtime 類別的 XML 編碼方式。

public:
 static property System::String ^ XmlNsForClrTypeWithNsAndAssembly { System::String ^ get(); };
public static string XmlNsForClrTypeWithNsAndAssembly { get; }
static member XmlNsForClrTypeWithNsAndAssembly : string
Public Shared ReadOnly Property XmlNsForClrTypeWithNsAndAssembly As String

屬性值

預設 XML 命名空間前置詞,其應該使用於同時擁有 Common Language Runtime 命名空間和組件的 Common Language Runtime 類別的 XML 編碼方式。

例外狀況

立即呼叫端沒有基礎結構使用權限。

範例

下列程式代碼範例示範如何使用這個屬性。 此程式代碼範例是針對 類別提供的較大範例的 SoapServices 一部分。

// Print the XML namespace for the CLR types
// that have both an assembly and a common language runtime
// namespace.
Console::WriteLine( L"The XML namespace for the CLR types "
L"that have both an assembly and a namespace, is {0}.",
   SoapServices::XmlNsForClrTypeWithNsAndAssembly );
// Print the XML namespace for the CLR types 
// that have both an assembly and a common language runtime 
// namespace.
Console.WriteLine(
    "The XML namespace for the CLR types " +
    "that have both an assembly and a namespace, is {0}.",
    SoapServices.XmlNsForClrTypeWithNsAndAssembly);

備註

WSDL 和 SOAP 通訊協定會將 Common Language Runtime 類別編碼為 XML 命名空間。 目前的 屬性會指定 XML 命名空間的格式。 如果 Common Language Runtime 類別具有元件和 Common Language Runtime 命名空間,則目前的 屬性會傳回使用的預設 XML 命名空間。

適用於