SoapServices.XmlNsForClrTypeWithNsAndAssembly プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
共通言語ランタイム名前空間とアセンブリの両方を持つ共通言語ランタイム クラスの XML エンコーディングに使用する、既定の 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 エンコーディングに使用する、既定の 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 プロトコルは、共通言語ランタイム クラスを XML 名前空間にエンコードします。 現在のプロパティは、XML 名前空間の形式を指定します。 共通言語ランタイム クラスにアセンブリと共通言語ランタイム名前空間がある場合、現在のプロパティは使用される既定の XML 名前空間を返します。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET