LogicalMethodInfo クラスとは? わかりやすく解説

LogicalMethodInfo クラス

XML Web サービス メソッド属性メタデータ表します。このクラス継承できません。

名前空間: System.Web.Services.Protocols
アセンブリ: System.Web.Services (system.web.services.dll 内)
構文構文

Public NotInheritable Class
 LogicalMethodInfo
Dim instance As LogicalMethodInfo
public sealed class LogicalMethodInfo
public ref class LogicalMethodInfo sealed
public final class LogicalMethodInfo
public final class LogicalMethodInfo
解説解説
使用例使用例
' Process the SOAP message received and write to log file.
Public Overrides Sub ProcessMessage(message
 As SoapMessage)
   Select Case message.Stage
      Case SoapMessageStage.BeforeSerialize
      Case SoapMessageStage.AfterSerialize
         WriteOutput(CType(message, SoapServerMessage))
      Case SoapMessageStage.BeforeDeserialize
         WriteInput(CType(message, SoapServerMessage))
      Case SoapMessageStage.AfterDeserialize
      Case Else
            Throw New Exception("invalid
 stage")
   End Select
End Sub 'ProcessMessage

' Write the contents of the incoming SOAP message to the log file.
Public Sub WriteInput(message As
 SoapServerMessage)
   ' Utility method to copy the contents of one stream to another.
   Copy(oldStream, newStream)
   Dim myFileStream As New
 FileStream(filename, FileMode.Append, FileAccess.Write)
   Dim myStreamWriter As New
 StreamWriter(myFileStream)
   myStreamWriter.WriteLine("==================================
 Request at " + _
                             DateTime.Now)
   myStreamWriter.WriteLine("The method that has been invoked
 is : ")
   myStreamWriter.WriteLine(ControlChars.Tab + message.MethodInfo.Name)
   myStreamWriter.WriteLine("The contents of the SOAP envelope
 are : ")
   myStreamWriter.Flush()
   newStream.Position = 0
   Copy(newStream, myFileStream)
   myFileStream.Close()
   newStream.Position = 0
End Sub 'WriteInput

' Write the contents of the outgoing SOAP message to the log file.
Public Sub WriteOutput(message As
 SoapServerMessage)
   newStream.Position = 0
   Dim myFileStream As New
 FileStream(filename, FileMode.Append, FileAccess.Write)
   Dim myStreamWriter As New
 StreamWriter(myFileStream)
   myStreamWriter.WriteLine("----------------------------------
 Response at " + _
                             DateTime.Now)
   myStreamWriter.Flush()
   ' Utility method to copy the contents of one stream to another.
   Copy(newStream, myFileStream)
   myFileStream.Close()
   newStream.Position = 0
   Copy(newStream, oldStream)
End Sub 'WriteOutput
// Process the SOAP message received and write to log file.
public override void ProcessMessage(SoapMessage
 message) 
{
   switch (message.Stage) 
   {
      case SoapMessageStage.BeforeSerialize:
         break;
      case SoapMessageStage.AfterSerialize:
         WriteOutput((SoapServerMessage)message);
         break;
      case SoapMessageStage.BeforeDeserialize:
         WriteInput((SoapServerMessage)message);
         break;
      case SoapMessageStage.AfterDeserialize:
         break;
      default:
         throw new Exception("invalid stage");
   }
}

// Write the contents of the incoming SOAP message to the log file.
public void WriteInput(SoapServerMessage message)
{
   // Utility method to copy the contents of one stream to another.
 
   Copy(oldStream, newStream);
   FileStream myFileStream = new FileStream(filename, FileMode.Append,
 FileAccess.Write);
   StreamWriter myStreamWriter = new StreamWriter(myFileStream);
   myStreamWriter.WriteLine("================================== Request at "
      + DateTime.Now);
   myStreamWriter.WriteLine("The method that has been invoked is : ");
   myStreamWriter.WriteLine("\t" + message.MethodInfo.Name);
   myStreamWriter.WriteLine("The contents of the SOAP envelope are : ");
   myStreamWriter.Flush();
   newStream.Position = 0;
   Copy(newStream, myFileStream);
   myFileStream.Close();
   newStream.Position = 0;
}

// Write the contents of the outgoing SOAP message to the log file.
public void WriteOutput(SoapServerMessage message)
{
   newStream.Position = 0;
   FileStream myFileStream = new FileStream(filename, FileMode.Append,
 FileAccess.Write);
   StreamWriter myStreamWriter = new StreamWriter(myFileStream);
   myStreamWriter.WriteLine("---------------------------------- Response at
 " 
                                       + DateTime.Now);
   myStreamWriter.Flush();
   // Utility method to copy the contents of one stream to another.
 
   Copy(newStream, myFileStream);
   myFileStream.Close();
   newStream.Position = 0;
   Copy(newStream, oldStream);
}
// Process the SOAP message received and write to log file.
public void ProcessMessage(SoapMessage message)
 throws Exception
{
    switch(message.get_Stage()) {
        case SoapMessageStage.BeforeSerialize:
            break;
        case SoapMessageStage.AfterSerialize: 
            WriteOutput((SoapServerMessage)message);
            break;
        case SoapMessageStage.BeforeDeserialize:
            WriteInput((SoapServerMessage)message);
            break;
        case SoapMessageStage.AfterDeserialize:
            break;
        default : 
            throw new Exception("invalid stage");
    }
} //ProcessMessage
   
// Write the contents of the incoming SOAP message to the log file.
public void WriteInput(SoapServerMessage message)
 
{
    // Utility method to copy the contents of one stream to another.
    Copy(oldStream, newStream);
    FileStream myFileStream =  new FileStream(filename, FileMode.Append
,
        FileAccess.Write);
    StreamWriter myStreamWriter = new StreamWriter(myFileStream);
    myStreamWriter.WriteLine("================================== " 
        + "Request at " + DateTime.get_Now());
    myStreamWriter.WriteLine("The method that has been invoked is : ");
    myStreamWriter.WriteLine("\t" + message.get_MethodInfo().get_Name());
    myStreamWriter.WriteLine("The contents of the SOAP envelope are : ");
    myStreamWriter.Flush();
    newStream.set_Position(0);
    Copy(newStream, myFileStream);
    myFileStream.Close();
    newStream.set_Position(0);
} //WriteInput
   
// Write the contents of the outgoing SOAP message to the log file.
public void WriteOutput(SoapServerMessage message)
 
{
    newStream.set_Position(0);
    FileStream myFileStream =  new FileStream(filename, FileMode.Append
, 
        FileAccess.Write);
    StreamWriter myStreamWriter = new StreamWriter(myFileStream);
    myStreamWriter.WriteLine("---------------------------------- " 
        + "Response at "  + DateTime.get_Now());
    myStreamWriter.Flush();
    // Utility method to copy the contents of one stream to another.
 
    Copy(newStream, myFileStream);
    myFileStream.Close();
    newStream.set_Position(0);
    Copy(newStream, oldStream);
} //WriteOutput
   
継承階層継承階層
System.Object
  System.Web.Services.Protocols.LogicalMethodInfo
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
LogicalMethodInfo メンバ
System.Web.Services.Protocols 名前空間
SoapExtension
GetInitializer
MethodInfo



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「LogicalMethodInfo クラス」の関連用語

LogicalMethodInfo クラスのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



LogicalMethodInfo クラスのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS