다음을 통해 공유


SoapMessage.MethodInfo 속성

정의

파생 클래스에서 재정의된 경우 해당 SOAP 요청이 사용되는 XML Web services 메서드에 대한 메서드 프로토타입 표현을 가져옵니다.

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 services 메서드를 나타내는 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())

설명

하지만 MethodInfo 수행 하는 동안 액세스할 수 있습니다 SoapMessageStage만 하는 동안 데이터를 갖고 AfterDeserializeBeforeSerialize합니다.

적용 대상

추가 정보