次の方法で共有


SoapServices.XmlNsForClrType プロパティ

定義

共通言語ランタイム型の XML 名前空間プレフィックスを取得します。

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

プロパティ値

共通言語ランタイム型の XML 名前空間プレフィックス。

例外

直前の呼び出し元に、インフラストラクチャ アクセス許可がありません。

次のコード例は、このプロパティの使用方法を示しています。 このコード例は、SoapServices クラスのために提供されている大規模な例の一部です。

// Print the XML namespace for the CLR types.
Console::WriteLine( L"The XML namespace for the CLR types "
L"is {0}.", SoapServices::XmlNsForClrType );
// Print the XML namespace for the CLR types.
Console.WriteLine(
    "The XML namespace for the CLR types " + 
    "is {0}.",
    SoapServices.XmlNsForClrType);

注釈

WSDL および SOAP プロトコルは、共通言語ランタイム クラスを XML 名前空間にエンコードします。 現在のプロパティは、XML 名前空間の形式を指定します。 共通言語ランタイム クラスのすべての XML 名前空間は、現在のプロパティが返す で String 始まります。

適用対象