Compartilhar via


XmlFormatExtensionAttribute.ExtensionPoints Propriedade

Definição

Os estágios em que a extensão de formato de descrição de serviço é executada.

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()

Valor da propriedade

Type[]

Uma matriz especifica o estágio em que a extensão de Type formato de descrição do serviço deve ser executada.

Exemplos

// 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

Comentários

A lista de tipos disponíveis com os quais uma extensão de formato de descrição de serviço pode ser executada inclui aqueles incorporados em ASP.NET e quaisquer tipos personalizados configurados no servidor Web. Os tipos internos ASP.NET que podem ser executados com uma extensão de formato de descrição de serviço estão na seguinte lista:

Todas essas classes referem-se a seções, dentro de uma descrição de serviço, que são geradas por ASP.NET.

Aplica-se a