XmlFormatExtensionPrefixAttribute コンストラクター

定義

XmlFormatExtensionPrefixAttribute クラスの新しいインスタンスを初期化します。

オーバーロード

XmlFormatExtensionPrefixAttribute()

XmlFormatExtensionPrefixAttribute クラスの新しいインスタンスを初期化します。

XmlFormatExtensionPrefixAttribute(String, String)

サービスの説明のフォーマット拡張用の XML 名前空間と XML 名前空間プリフィックスを設定し、XmlFormatExtensionPrefixAttribute クラスの新しいインスタンスを初期化します。

XmlFormatExtensionPrefixAttribute()

ソース:
XmlFormatExtensionPrefixAttribute.cs
ソース:
XmlFormatExtensionPrefixAttribute.cs
ソース:
XmlFormatExtensionPrefixAttribute.cs

XmlFormatExtensionPrefixAttribute クラスの新しいインスタンスを初期化します。

public:
 XmlFormatExtensionPrefixAttribute();
public XmlFormatExtensionPrefixAttribute ();
Public Sub New ()

こちらもご覧ください

適用対象

XmlFormatExtensionPrefixAttribute(String, String)

ソース:
XmlFormatExtensionPrefixAttribute.cs
ソース:
XmlFormatExtensionPrefixAttribute.cs
ソース:
XmlFormatExtensionPrefixAttribute.cs

サービスの説明のフォーマット拡張用の XML 名前空間と XML 名前空間プリフィックスを設定し、XmlFormatExtensionPrefixAttribute クラスの新しいインスタンスを初期化します。

public:
 XmlFormatExtensionPrefixAttribute(System::String ^ prefix, System::String ^ ns);
public XmlFormatExtensionPrefixAttribute (string prefix, string ns);
new System.Web.Services.Configuration.XmlFormatExtensionPrefixAttribute : string * string -> System.Web.Services.Configuration.XmlFormatExtensionPrefixAttribute
Public Sub New (prefix As String, ns As String)

パラメーター

prefix
String

サービスの説明のフォーマット拡張に関連付けられた XML 名前空間プリフィックス。

ns
String

サービスの説明のフォーマット拡張に関連付けられた XML 名前空間。

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

適用対象