Sdílet prostřednictvím


XmlFormatExtensionAttribute.ExtensionPoints Vlastnost

Definice

Fáze, ve kterých se má spustit rozšíření formátu popisu služby.

public:
 property cli::array <Type ^> ^ ExtensionPoints { cli::array <Type ^> ^ get(); void set(cli::array <Type ^> ^ value); };
public Type[] ExtensionPoints { get; set; }
member this.ExtensionPoints : Type[] with get, set
Public Property ExtensionPoints As Type()

Hodnota vlastnosti

Type[]

Pole Type určující fázi, ve které se má spustit rozšíření formátu popisu služby.

Příklady

// 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; }
    }
}
' 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, _
    GetType(OperationBinding)), _
    XmlFormatExtensionPrefix("yml", YMLOperationBinding.YMLNamespace)> _
Public Class YMLOperationBinding
    Inherits ServiceDescriptionFormatExtension
    Private _reverse As Boolean
    Public Const YMLNamespace As String = "http://www.contoso.com/yml"

    <XmlElement("Reverse")> _
    Public Property Reverse() As Boolean
        Get
            Return _reverse
        End Get
        Set(ByVal Value As Boolean)
            _reverse = Value
        End Set
    End Property

End Class

Poznámky

Seznam dostupných typů, se kterými může být spuštěno rozšíření formátu popisu služby, patří ty, které jsou integrované do ASP.NET a všechny vlastní typy nakonfigurované na webovém serveru. Typy integrované do ASP.NET, které můžou běžet s příponou formátu popisu služby, najdete v následujícím seznamu:

Všechny tyto třídy odkazují na oddíly v rámci popisu služby, které jsou generovány ASP.NET.

Platí pro