共用方式為


SoapServices.XmlNsForClrTypeWithNs 屬性

定義

取得 XML 命名空間前置詞,其應該使用於為 mscorlib.dll 檔案一部分的 Common Language Runtime 類別的 XML 編碼方式。

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

屬性值

XML 命名空間前置詞,應該使用於為 mscorlib.dll 檔案一部分的 Common Language Runtime 類別的 XML 編碼方式。

例外狀況

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

範例

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

// Print the XML namespace for the CLR types
// that are a part of the Mscorlib.dll.
Console::WriteLine( L"The XML namespace for the CLR types "
L"that are part of the Mscorlib.dll, is {0}.",
   SoapServices::XmlNsForClrTypeWithNs );
// Print the XML namespace for the CLR types 
// that are a part of the Mscorlib.dll.
Console.WriteLine(
    "The XML namespace for the CLR types " +
    "that are part of the Mscorlib.dll, is {0}.",
    SoapServices.XmlNsForClrTypeWithNs);

備註

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

適用於