SoapDocumentServiceAttribute クラス

定義

オプションの SoapDocumentServiceAttribute を XML Web サービスに適用することにより、そのサービス内の XML Web サービス メソッドとの間で送受信される SOAP 要求と SOAP 応答の既定の書式を設定できます。

public ref class SoapDocumentServiceAttribute sealed : Attribute
[System.AttributeUsage(System.AttributeTargets.Class)]
public sealed class SoapDocumentServiceAttribute : Attribute
[<System.AttributeUsage(System.AttributeTargets.Class)>]
type SoapDocumentServiceAttribute = class
    inherit Attribute
Public NotInheritable Class SoapDocumentServiceAttribute
Inherits Attribute
継承
SoapDocumentServiceAttribute
属性

<%@ WebService Language="c#" Class="SumService" %>

using System;
using System.Web.Services;
using System.Web.Services.Protocols;
using System.Web.Services.Description;

    [SoapDocumentService(SoapBindingUse.Literal,
                         SoapParameterStyle.Wrapped,
                         RoutingStyle=SoapServiceRoutingStyle.SoapAction)]
    public class SumService : System.Web.Services.WebService
    {
        [WebMethod]
        public int Add(int a, int b)
        {
            return a + b;
        }
    }
<%@ WebService Language="VB" Class="SumService" %>

Imports System
Imports System.Web.Services
Imports System.Web.Services.Protocols
Imports System.Web.Services.Description

    <SoapDocumentService(SoapBindingUse.Literal, _
                             SoapParameterStyle.Wrapped, _
                             RoutingStyle := SoapServiceRoutingStyle.SoapAction)> _
    Public Class SumService 
          Inherits System.Web.Services.WebService
    
        <WebMethod> _
        Public Function Add(a As Integer, b as Integer)
           return a + b
        End Function
    End Class

注釈

SoapDocumentServiceAttributeを使用すると、XML Web サービス内の XML Web サービス メソッドの既定の書式設定スタイルを設定できます。 個々の XML Web サービス メソッドでこれらの既定値を変更する必要がある場合は、その XML Web サービス メソッドに を適用 SoapDocumentMethodAttribute します。

Web サービス記述言語 (WSDL) では、操作を呼び出す XML Web サービス メソッドを SOAP 要求または SOAP 応答 RPC で書式設定する方法として、 と Documentの 2 つのスタイルを定義します。 個々のメッセージ 部分が プロパティと ParameterStyle プロパティによってUse決定される正確な方法。 プロパティは Use 、パラメーターの書式 Encoded を設定するか、 を指定するかを Literal決定します。 は ParameterStyle 、パラメーターが要素の下の 1 つのメッセージ 部分内にカプセル化されるか、各パラメーターが個々の Body メッセージ 部分であるかを決定します。

既定のメソッド レベルの書式設定を に RPC設定するには、 を XML Web サービスを実装するクラスに を適用 SoapRpcServiceAttribute します。

詳細については、「 SOAP メッセージの書式設定のカスタマイズ」を参照してください。

この属性は、XML Web サービスを実装するクラスに適用できます。

コンストラクター

SoapDocumentServiceAttribute()

すべてのプロパティを既定値に設定し、SoapDocumentServiceAttribute クラスの新しいインスタンスを初期化します。

SoapDocumentServiceAttribute(SoapBindingUse)

パラメーターの書式を指定し、SoapDocumentServiceAttribute クラスの新しいインスタンスを初期化します。

SoapDocumentServiceAttribute(SoapBindingUse, SoapParameterStyle)

パラメーターの書式を指定し、SOAP メッセージ内の Body 要素の下で単一の XML 要素内にパラメーターをカプセル化するかどうかを指定する SoapDocumentServiceAttribute クラスの新しいインスタンスを初期化します。

プロパティ

ParameterStyle

XML Web サービスの XML Web サービス メソッドに対する SOAP メッセージの XML 部分で、<Body> 要素の後に続く単一の要素内にパラメーターをカプセル化するかどうかを制御する既定の設定を取得または設定します。

RoutingStyle

SOAP メッセージを XML Web サービスにルーティングする方法を取得または設定します。

TypeId

派生クラスで実装されると、この Attribute の一意の識別子を取得します。

(継承元 Attribute)
Use

XML Web サービスの既定のパラメーター書式を取得または設定します。

メソッド

Equals(Object)

このインスタンスが、指定されたオブジェクトと等価であるかどうかを示す値を返します。

(継承元 Attribute)
GetHashCode()

このインスタンスのハッシュ コードを返します。

(継承元 Attribute)
GetType()

現在のインスタンスの Type を取得します。

(継承元 Object)
IsDefaultAttribute()

派生クラスでオーバーライドされるとき、このインスタンスの値が派生クラスの既定値であるかどうかを示します。

(継承元 Attribute)
Match(Object)

派生クラス内でオーバーライドされたときに、指定したオブジェクトとこのインスタンスが等しいかどうかを示す値を返します。

(継承元 Attribute)
MemberwiseClone()

現在の Object の簡易コピーを作成します。

(継承元 Object)
ToString()

現在のオブジェクトを表す文字列を返します。

(継承元 Object)

明示的なインターフェイスの実装

_Attribute.GetIDsOfNames(Guid, IntPtr, UInt32, UInt32, IntPtr)

一連の名前を対応する一連のディスパッチ識別子に割り当てます。

(継承元 Attribute)
_Attribute.GetTypeInfo(UInt32, UInt32, IntPtr)

オブジェクトの型情報を取得します。この情報はインターフェイスの型情報の取得に使用できます。

(継承元 Attribute)
_Attribute.GetTypeInfoCount(UInt32)

オブジェクトが提供する型情報インターフェイスの数 (0 または 1) を取得します。

(継承元 Attribute)
_Attribute.Invoke(UInt32, Guid, UInt32, Int16, IntPtr, IntPtr, IntPtr, IntPtr)

オブジェクトによって公開されたプロパティおよびメソッドへのアクセスを提供します。

(継承元 Attribute)

適用対象

こちらもご覧ください