Freigeben über


XmlFormatExtensionAttribute-Konstruktor (String, String, Type)

Initialisiert eine neue Instanz der XmlFormatExtensionAttribute-Klasse, die das XML-Element und den Namespace angibt, die bei der Ausführung am angegebenen Erweiterungspunkt hinzugefügt werden sollen.

Namespace: System.Web.Services.Configuration
Assembly: System.Web.Services (in system.web.services.dll)

Syntax

'Declaration
Public Sub New ( _
    elementName As String, _
    ns As String, _
    extensionPoint1 As Type _
)
'Usage
Dim elementName As String
Dim ns As String
Dim extensionPoint1 As Type

Dim instance As New XmlFormatExtensionAttribute(elementName, ns, extensionPoint1)
public XmlFormatExtensionAttribute (
    string elementName,
    string ns,
    Type extensionPoint1
)
public:
XmlFormatExtensionAttribute (
    String^ elementName, 
    String^ ns, 
    Type^ extensionPoint1
)
public XmlFormatExtensionAttribute (
    String elementName, 
    String ns, 
    Type extensionPoint1
)
public function XmlFormatExtensionAttribute (
    elementName : String, 
    ns : String, 
    extensionPoint1 : Type
)

Parameter

  • elementName
    Das der Dienstbeschreibung durch die Formaterweiterung der Dienstbeschreibung hinzugefügte XML-Element.
  • ns
    Der XML-Namespace für das der Dienstbeschreibung durch die Formaterweiterung der Dienstbeschreibung hinzugefügte XML-Element.
  • extensionPoint1
    Der Erweiterungspunkt, an dem die Formaterweiterung der Dienstbeschreibung ausgeführt werden soll.

Beispiel

' 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 = "https://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
// 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 = "https://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.
/** @attribute XmlFormatExtension("action", YMLOperationBinding.YMLNamespace, 
    OperationBinding.class)
 */
/** @attribute XmlFormatExtensionPrefix("yml", YMLOperationBinding.YMLNamespace)
 */
public class YMLOperationBinding extends ServiceDescriptionFormatExtension
{
    private Boolean reverse;
    public final static String YMLNamespace = "https://www.contoso.com/yml";

    /** @attribute XmlElement("Reverse")
     */
    /** @property 
     */
    public Boolean get_Reverse()
    {
        return reverse;
    } //get_Reverse

    /** @property 
     */
    public void set_Reverse(Boolean value)
    {
        reverse = value;
    } //set_Reverse
} //YMLOperationBinding

Plattformen

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1, 1.0

Siehe auch

Referenz

XmlFormatExtensionAttribute-Klasse
XmlFormatExtensionAttribute-Member
System.Web.Services.Configuration-Namespace