次の方法で共有


SoapMessage.MethodInfo プロパティ

定義

派生クラスでオーバーライドされると、SOAP 要求の対象となる XML Web サービス メソッドのメソッド プロトタイプの表示を取得します。

public:
 abstract property System::Web::Services::Protocols::LogicalMethodInfo ^ MethodInfo { System::Web::Services::Protocols::LogicalMethodInfo ^ get(); };
public abstract System.Web.Services.Protocols.LogicalMethodInfo MethodInfo { get; }
member this.MethodInfo : System.Web.Services.Protocols.LogicalMethodInfo
Public MustOverride ReadOnly Property MethodInfo As LogicalMethodInfo

プロパティ値

LogicalMethodInfo

SOAP 要求の対象となる XML Web サービス メソッドを表す LogicalMethodInfo

myStreamWriter->WriteLine(
   "The method that has been invoked is: " );
myStreamWriter->WriteLine( "\t{0}", message->MethodInfo );
myStreamWriter.WriteLine("The method that has been invoked is: ");
myStreamWriter.WriteLine("\t" + message.MethodInfo);
myStreamWriter.WriteLine("The method that has been invoked is: ")
myStreamWriter.WriteLine(ControlChars.Tab & message.MethodInfo.ToString())

注釈

任意MethodInfoSoapMessageStageの間にアクセスできますが、実行中とBeforeSerialize実行中のデータAfterDeserializeのみが含まれます。

適用対象

こちらもご覧ください