XmlFormatExtensionAttribute.ExtensionPoints プロパティ

定義

サービス記述形式拡張機能を実行する段階。

C#
public Type[] ExtensionPoints { get; set; }

プロパティ値

Type[]

サービス記述形式拡張機能を実行する段階を指定する Type の配列。

C#
// The YMLOperationBinding class is part of the YML SDFE, as it is the
// class that is serialized into XML and is placed in the service
// description.
[XmlFormatExtension("action", YMLOperationBinding.YMLNamespace,
    typeof(OperationBinding))]
[XmlFormatExtensionPrefix("yml", YMLOperationBinding.YMLNamespace)]
public class YMLOperationBinding : ServiceDescriptionFormatExtension
{
    private Boolean reverse;

    public const string YMLNamespace = "http://www.contoso.com/yml";

    [XmlElement("Reverse")]
    public Boolean Reverse
    {
        get { return reverse; }
        set { reverse = value; }
    }
}

注釈

サービス記述形式拡張機能を実行できる使用可能な型の一覧には、ASP.NET に組み込まれている型と、Web サーバーで構成されている任意のカスタム型が含まれます。 サービス記述フォーマット拡張機能を使用して実行できる ASP.NET に組み込まれている型は、次の一覧にあります。

これらのクラスはすべて、ASP.NET によって生成されるサービスの説明内のセクションを参照します。

適用対象

製品 バージョン
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)